Search found 46 matches

by miguelp
23 Sep 2015 17:57
Forum: Configure the URL Guarding
Topic: Ldap query for MS AD for group membership
Replies: 9
Views: 13356

Re: Ldap query for MS AD for group membership

Hello David, I've setup a test domain, with test Windows Server, Test CG, etc. I've also managed to capture the LDAP searches CG is sending to the AD using this http://www.activedir.org/Articles/tabid/54/articleType/ArticleView/articleId/49/Default.aspx. For me it looks like CG send the LDAP Filter ...
by miguelp
23 Sep 2015 06:39
Forum: Configure the URL Guarding
Topic: Ldap query for MS AD for group membership
Replies: 9
Views: 13356

Re: Ldap query for MS AD for group membership

Hello David,
Thanks!

About 2, can I use then:

Code: Select all

rule add default deny
I suppose this will interpreted as deny nothing, so everything will be accessible.

Then I define my other policies for denying some categories, right ?

Thanks,
Miguel
by miguelp
20 Sep 2015 14:49
Forum: Configure the URL Guarding
Topic: Ldap query for MS AD for group membership
Replies: 9
Views: 13356

Re: Ldap query for MS AD for group membership

Hello David, Well I deleted all my configuration and made it again using only the command line. Now it works. (I mean as a global, not using Ldap filter). I mean I managed to block all webmail pages for all users, but there is something that looks like a bug: If you go to hotmail.com you see the mes...
by miguelp
19 Sep 2015 20:20
Forum: Configure the URL Guarding
Topic: Ldap query for MS AD for group membership
Replies: 9
Views: 13356

Ldap query for MS AD for group membership

Hi, I figured out and tested that for checking if a user is member of my group FullInternetAccess I can use this query: (&(objectCategory=Person)(memberOf=CN=FullInternetAccess,CN=Users,DC=mydomain,DC=me)) Also I can use: (&(sAMAccountName=myuser)(memberOf=CN=FullInternetAccess,CN=Users,DC=m...
by miguelp
19 Sep 2015 19:11
Forum: Configure the URL Guarding
Topic: Internal: error 78 when transferring the files
Replies: 2
Views: 7518

Re: Internal: error 78 when transferring the files

Hi,
I recompressed the files, and after that is working.
The error is not showing anymore.
Thanks,
Miguel
by miguelp
19 Sep 2015 17:13
Forum: Configure the URL Guarding
Topic: Internal: error 78 when transferring the files
Replies: 2
Views: 7518

Internal: error 78 when transferring the files

Hi, I'm using this command guard category load create WebMail ftp 192.168.110.4 WebMail domains urls I've set also the password for my FTP user, and I've tested it with a ftp client. password ftp add 192.168.110.4 user@mydomain.com In the root of the FTP server I can see two files: WebMail.domains W...
by miguelp
19 Sep 2015 16:45
Forum: Configure the URL Guarding
Topic: Different port for the FTP server
Replies: 1
Views: 6662

Different port for the FTP server

Hi, For internal reasons, we use FTP in a different port. I was trying this: guard category load create WebMail ftp 192.168.110.4:20000 WebMail domains urls But I receive the message: *** Error 113 - This is neither a valid IP address nor a valid full host name. Is it possible to specify a different...
by miguelp
19 Sep 2015 16:03
Forum: General Network Configuration
Topic: Log Analysis
Replies: 28
Views: 60459

Re: Log Analysis

Hello David, It did not work, with the module for analysing Apache logs. But this is the regular expression for your log format: (\S+)\s+(\S+)\s\[([^:]+):(\d+:\d+:\d+) ([^\]]+)\] \"(.+?)\" (\S+) (\S+) (\S+) (\S+) You can test it https://regex101.com/ and as text you paste one line of your ...
by miguelp
18 Sep 2015 10:52
Forum: General Network Configuration
Topic: Log Analysis
Replies: 28
Views: 60459

Re: Log Analysis

Hi, I found the Illustrate commad, here is easier to see: (192.168.15.94,justigab,[15/Sep/2015:08:18:51,0400] "CONNEC,sl.gstatic.com:443,HTTP/1.0",200 6201,TCP_MISS,HIER_DIRECT) ----------------------------------------------------------------------------------------------------------------...
by miguelp
18 Sep 2015 10:44
Forum: General Network Configuration
Topic: Log Analysis
Replies: 28
Views: 60459

Re: Log Analysis

Hi, You were right, APACHE products talk between each other. With this command in PIG raw_logs = LOAD '/user/admin/data/log.csv' USING org.apache.pig.piggybank.storage.apachelog.CommonLogLoader() AS (PCAddr: chararray, user: chararray, time: chararray, request: chararray, status: int, bytes: int, du...