Re: [users@httpd] Problems with cgi scripts and Apache's log.

2012-03-01 Thread Antonio Fernández Pérez
Thanks for your answer.

Regards,

Toni.

El 1 de marzo de 2012 20:34, Anam Ali Khan  escribió:

> Place SetEnvIfNoCase in a single line.
>
> Sorrt, first will deny ALL requests that ending in dll extension and next
> directives will not logged those requests in Apache logs.
>
> Thanks,
> Anam
>
>   --
> *From:* Anam Ali Khan 
> *To:* "users@httpd.apache.org" 
> *Sent:* Friday, 2 March 2012, 0:27
>
> *Subject:* Re: [users@httpd] Problems with cgi scripts and Apache's log.
>
> You can try following configuration in Apache virtual host container.
>
> 
> Order deny,allow
> Deny from all
> 
>
> SetEnvIfNoCase **Request_URI "^[/]cgi-bin[/](*)\.dll)$" dontlog
> CustomLog /var/log/httpd/access_log combined env=!dontlog
>
> First will deny allow requests that ending in dll extension and next
> directives will not logged those requests in Apache logs.
>
> Regards,
> Anam
>
>   --
> *From:* Antonio Fernández Pérez 
> *To:* users@httpd.apache.org
> *Sent:* Thursday, 1 March 2012, 22:02
> *Subject:* Re: [users@httpd] Problems with cgi scripts and Apache's log.
>
> Thanks for all answers.
>
> I had some doubts about this. I think that is interesting log all data
> (accesses or errors). I 'm afraid these logs are growing a lot, I don't
> know if this is bad. I should to define some directives with my partners
> and we should to decide what to do with this.
>
> Thanks for your help.
>
> Best regards,
>
> Toni.
>
> El 1 de marzo de 2012 17:54, Jim Jagielski  escribió:
>
> Which do you want: to stop the logfiles from growing or deny the
> requests?
>
> Or both?
>
> On Mar 1, 2012, at 11:40 AM, Antonio Fernández Pérez wrote:
>
> > Hi again,
> >
> > My apologies for these messages. Now, I have checked it and is growing
> the access log file. How can I do to deny these requests? I'm trying to
> configure Apache to deny all requests that tries to execute .dll files ind
> cgi-bin directory. Any idea? I don't know how can I do it.
> >
> > Thanks.
> >
> > Best regards,
> >
> > Toni.
> >
> > El 1 de marzo de 2012 17:09, Antonio Fernández Pérez <
> antoniofernan...@fabergames.com> escribió:
> > Thanks for your help.
> >
> > I have gotten it doing this:
> > AliasMatch ^/cgi-bin/(.*)\.dll$ /var/www/go_away.html
> >
> > Now Apache doesn't log errors about dll loads. Do you think that is it
> correct?
> >
> > Thanks.
> >
> > Best regards,
> >
> > Toni.
> >
> > El 1 de marzo de 2012 16:32, Antonio Fernández Pérez <
> antoniofernan...@fabergames.com> escribió:
> >
> > I put an error log output.
> >
> > Thanks,
> >
> > [Thu Mar 01 16:31:10 2012] [error] [client 80.24.29.20] script not found
> or unable to stat: /var/www/www.fabergames.net/cgi-bin/cbws1084x.dll
> > [Thu Mar 01 16:31:12 2012] [error] [client 88.23.110.4] script not found
> or unable to stat: /var/www/www.fabergames.net/cgi-bin/cbws1084x.dll
> > [Thu Mar 01 16:31:12 2012] [error] [client 217.127.6.33] File does not
> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
> > [Thu Mar 01 16:31:13 2012] [error] [client 212.36.73.27] File does not
> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
> > [Thu Mar 01 16:31:14 2012] [error] [client 217.126.29.45] File does not
> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
> > [Thu Mar 01 16:31:14 2012] [error] [client 83.34.151.133] (13)Permission
> denied: exec of '/var/www/go_away.html' failed
> > [Thu Mar 01 16:31:14 2012] [error] [client 83.34.151.133] Premature end
> of script headers: go_away.html
> > [Thu Mar 01 16:31:14 2012] [error] [client 83.42.159.135] (13)Permission
> denied: exec of '/var/www/go_away.html' failed
> > [Thu Mar 01 16:31:14 2012] [error] [client 83.42.159.135] Premature end
> of script headers: go_away.html
> > [Thu Mar 01 16:31:14 2012] [error] [client 79.148.190.156] File does not
> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
> > [Thu Mar 01 16:31:16 2012] [error] [client 80.34.128.246] File does not
> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
> > [Thu Mar 01 16:31:17 2012] [error] [client 83.55.242.122] File does not
> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
> > [Thu Mar 01 16:31:17 2012] [error] [client 88.18.154.61] File does not
> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
> > [Thu Mar 01 16:31:17 2012] [error] [client 217.127.7.73] File does not
> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
&g

Re: [users@httpd] Problems with cgi scripts and Apache's log.

2012-03-01 Thread Anam Ali Khan
Place SetEnvIfNoCase in a single line.


Sorrt, first will deny ALL requests that ending in dll extension and next 
directives will not logged those requests in Apache logs.

Thanks,
Anam




 From: Anam Ali Khan 
To: "users@httpd.apache.org"  
Sent: Friday, 2 March 2012, 0:27
Subject: Re: [users@httpd] Problems with cgi scripts and Apache's log.
 

You can try following configuration in Apache virtual host container.


Order deny,allow
Deny from all


SetEnvIfNoCase Request_URI "^[/]cgi-bin[/](*)\.dll)$" dontlog
CustomLog/var/log/httpd/access_log combined env=!dontlog

First will deny allow requests that ending in dll extension and next directives 
will not logged those requests in Apache logs.

Regards,
Anam




 From: Antonio Fernández Pérez 
To: users@httpd.apache.org 
Sent: Thursday, 1 March 2012, 22:02
Subject: Re: [users@httpd] Problems with cgi scripts and Apache's log.
 

Thanks for all answers.

I had some doubts about this. I think that is interesting log all data 
(accesses or errors). I 'm afraid these logs are growing a lot, I don't know if 
this is bad. I should to define some directives with my partners and we should 
to decide what to do with this.

Thanks for your help.

Best regards, 

Toni.

El 1 de marzo de 2012 17:54, Jim Jagielski  escribió:

Which do you want: to stop the logfiles from growing or deny the
>requests?
>
>Or both?
>
>
>On Mar 1, 2012, at 11:40 AM, Antonio Fernández Pérez wrote:
>
>> Hi again,
>>
>> My apologies for these messages. Now, I have checked it and is growing the 
>> access log file. How can I do to deny these requests? I'm trying to 
>> configure Apache to deny all requests that tries to execute .dll files ind 
>> cgi-bin directory. Any idea? I don't know how can I do it.
>>
>> Thanks.
>>
>> Best regards,
>>
>> Toni.
>>
>> El 1 de marzo de 2012 17:09, Antonio Fernández Pérez 
>>  escribió:
>> Thanks for your help.
>>
>> I have gotten it doing this:
>> AliasMatch ^/cgi-bin/(.*)\.dll$ /var/www/go_away.html
>>
>> Now Apache doesn't log errors about dll loads. Do you think that is it 
>> correct?
>>
>> Thanks.
>>
>> Best regards,
>>
>> Toni.
>>
>> El 1 de marzo de 2012 16:32, Antonio Fernández Pérez 
>>  escribió:
>>
>> I put an error log output.
>>
>> Thanks,
>>
>> [Thu Mar 01 16:31:10 2012] [error] [client 80.24.29.20] script not found or 
>> unable to stat: /var/www/www.fabergames.net/cgi-bin/cbws1084x.dll
>> [Thu Mar 01 16:31:12 2012] [error] [client 88.23.110.4] script not found or 
>> unable to stat: /var/www/www.fabergames.net/cgi-bin/cbws1084x.dll
>> [Thu Mar 01 16:31:12 2012] [error] [client 217.127.6.33] File does not 
>> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
>> [Thu Mar 01 16:31:13 2012] [error] [client 212.36.73.27] File does not 
>> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
>> [Thu Mar 01 16:31:14 2012] [error] [client 217.126.29.45] File does not 
>> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
>> [Thu Mar 01 16:31:14 2012] [error] [client 83.34.151.133] (13)Permission 
>> denied: exec of '/var/www/go_away.html' failed
>> [Thu Mar 01 16:31:14 2012] [error] [client 83.34.151.133] Premature end of 
>> script headers: go_away.html
>> [Thu Mar 01 16:31:14 2012] [error] [client 83.42.159.135] (13)Permission 
>> denied: exec of '/var/www/go_away.html' failed
>> [Thu Mar 01 16:31:14 2012] [error] [client 83.42.159.135] Premature end of 
>> script headers: go_away.html
>> [Thu Mar 01 16:31:14 2012] [error] [client 79.148.190.156] File does not 
>> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
>> [Thu Mar 01 16:31:16 2012] [error] [client 80.34.128.246] File does not 
>> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
>> [Thu Mar 01 16:31:17 2012] [error] [client 83.55.242.122] File does not 
>> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
>> [Thu Mar 01 16:31:17 2012] [error] [client 88.18.154.61] File does not 
>> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
>> [Thu Mar 01 16:31:17 2012] [error] [client 217.127.7.73] File does not 
>> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
>> [Thu Mar 01 16:31:17 2012] [error] [client 80.28.208.232] (13)Permission 
>> denied: exec of '/var/www/go_away.html' failed
>> [Thu Mar 01 16:31:17 2012] [error] [client 80.28.208.232] Premature end of 
>> script headers: go_away.html
>> [Thu Mar 01 16:31:17 2012] [error] [client 217.127.7.73] File does not 
>> exist: /va

Re: [users@httpd] Problems with cgi scripts and Apache's log.

2012-03-01 Thread Anam Ali Khan
You can try following configuration in Apache virtual host container.


Order deny,allow
Deny from all


SetEnvIfNoCase Request_URI "^[/]cgi-bin[/](*)\.dll)$" dontlog
CustomLog/var/log/httpd/access_log combined env=!dontlog

First will deny allow requests that ending in dll extension and next directives 
will not logged those requests in Apache logs.

Regards,
Anam




 From: Antonio Fernández Pérez 
To: users@httpd.apache.org 
Sent: Thursday, 1 March 2012, 22:02
Subject: Re: [users@httpd] Problems with cgi scripts and Apache's log.
 

Thanks for all answers.

I had some doubts about this. I think that is interesting log all data 
(accesses or errors). I 'm afraid these logs are growing a lot, I don't know if 
this is bad. I should to define some directives with my partners and we should 
to decide what to do with this.

Thanks for your help.

Best regards, 

Toni.

El 1 de marzo de 2012 17:54, Jim Jagielski  escribió:

Which do you want: to stop the logfiles from growing or deny the
>requests?
>
>Or both?
>
>
>On Mar 1, 2012, at 11:40 AM, Antonio Fernández Pérez wrote:
>
>> Hi again,
>>
>> My apologies for these messages. Now, I have checked it and is growing the 
>> access log file. How can I do to deny these requests? I'm trying to 
>> configure Apache to deny all requests that tries to execute .dll files ind 
>> cgi-bin directory. Any idea? I don't know how can I do it.
>>
>> Thanks.
>>
>> Best regards,
>>
>> Toni.
>>
>> El 1 de marzo de 2012 17:09, Antonio Fernández Pérez 
>>  escribió:
>> Thanks for your help.
>>
>> I have gotten it doing this:
>> AliasMatch ^/cgi-bin/(.*)\.dll$ /var/www/go_away.html
>>
>> Now Apache doesn't log errors about dll loads. Do you think that is it 
>> correct?
>>
>> Thanks.
>>
>> Best regards,
>>
>> Toni.
>>
>> El 1 de marzo de 2012 16:32, Antonio Fernández Pérez 
>>  escribió:
>>
>> I put an error log output.
>>
>> Thanks,
>>
>> [Thu Mar 01 16:31:10 2012] [error] [client 80.24.29.20] script not found or 
>> unable to stat: /var/www/www.fabergames.net/cgi-bin/cbws1084x.dll
>> [Thu Mar 01 16:31:12 2012] [error] [client 88.23.110.4] script not found or 
>> unable to stat: /var/www/www.fabergames.net/cgi-bin/cbws1084x.dll
>> [Thu Mar 01 16:31:12 2012] [error] [client 217.127.6.33] File does not 
>> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
>> [Thu Mar 01 16:31:13 2012] [error] [client 212.36.73.27] File does not 
>> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
>> [Thu Mar 01 16:31:14 2012] [error] [client 217.126.29.45] File does not 
>> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
>> [Thu Mar 01 16:31:14 2012] [error] [client 83.34.151.133] (13)Permission 
>> denied: exec of '/var/www/go_away.html' failed
>> [Thu Mar 01 16:31:14 2012] [error] [client 83.34.151.133] Premature end of 
>> script headers: go_away.html
>> [Thu Mar 01 16:31:14 2012] [error] [client 83.42.159.135] (13)Permission 
>> denied: exec of '/var/www/go_away.html' failed
>> [Thu Mar 01 16:31:14 2012] [error] [client 83.42.159.135] Premature end of 
>> script headers: go_away.html
>> [Thu Mar 01 16:31:14 2012] [error] [client 79.148.190.156] File does not 
>> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
>> [Thu Mar 01 16:31:16 2012] [error] [client 80.34.128.246] File does not 
>> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
>> [Thu Mar 01 16:31:17 2012] [error] [client 83.55.242.122] File does not 
>> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
>> [Thu Mar 01 16:31:17 2012] [error] [client 88.18.154.61] File does not 
>> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
>> [Thu Mar 01 16:31:17 2012] [error] [client 217.127.7.73] File does not 
>> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
>> [Thu Mar 01 16:31:17 2012] [error] [client 80.28.208.232] (13)Permission 
>> denied: exec of '/var/www/go_away.html' failed
>> [Thu Mar 01 16:31:17 2012] [error] [client 80.28.208.232] Premature end of 
>> script headers: go_away.html
>> [Thu Mar 01 16:31:17 2012] [error] [client 217.127.7.73] File does not 
>> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
>> [Thu Mar 01 16:31:18 2012] [error] [client 80.35.91.44] File does not exist: 
>> /var/www/www.fabergames.net/Fabergames/cgi-bin
>> [Thu Mar 01 16:31:18 2012] [error] [client 88.27.241.160] File does not 
>> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
>>
>>
>> El 1 de marzo de 2012 16:24, Anto

Re: [users@httpd] Problems with cgi scripts and Apache's log.

2012-03-01 Thread Antonio Fernández Pérez
Thanks for all answers.

I had some doubts about this. I think that is interesting log all data
(accesses or errors). I 'm afraid these logs are growing a lot, I don't
know if this is bad. I should to define some directives with my partners
and we should to decide what to do with this.

Thanks for your help.

Best regards,

Toni.

El 1 de marzo de 2012 17:54, Jim Jagielski  escribió:

> Which do you want: to stop the logfiles from growing or deny the
> requests?
>
> Or both?
>
> On Mar 1, 2012, at 11:40 AM, Antonio Fernández Pérez wrote:
>
> > Hi again,
> >
> > My apologies for these messages. Now, I have checked it and is growing
> the access log file. How can I do to deny these requests? I'm trying to
> configure Apache to deny all requests that tries to execute .dll files ind
> cgi-bin directory. Any idea? I don't know how can I do it.
> >
> > Thanks.
> >
> > Best regards,
> >
> > Toni.
> >
> > El 1 de marzo de 2012 17:09, Antonio Fernández Pérez <
> antoniofernan...@fabergames.com> escribió:
> > Thanks for your help.
> >
> > I have gotten it doing this:
> > AliasMatch ^/cgi-bin/(.*)\.dll$ /var/www/go_away.html
> >
> > Now Apache doesn't log errors about dll loads. Do you think that is it
> correct?
> >
> > Thanks.
> >
> > Best regards,
> >
> > Toni.
> >
> > El 1 de marzo de 2012 16:32, Antonio Fernández Pérez <
> antoniofernan...@fabergames.com> escribió:
> >
> > I put an error log output.
> >
> > Thanks,
> >
> > [Thu Mar 01 16:31:10 2012] [error] [client 80.24.29.20] script not found
> or unable to stat: /var/www/www.fabergames.net/cgi-bin/cbws1084x.dll
> > [Thu Mar 01 16:31:12 2012] [error] [client 88.23.110.4] script not found
> or unable to stat: /var/www/www.fabergames.net/cgi-bin/cbws1084x.dll
> > [Thu Mar 01 16:31:12 2012] [error] [client 217.127.6.33] File does not
> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
> > [Thu Mar 01 16:31:13 2012] [error] [client 212.36.73.27] File does not
> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
> > [Thu Mar 01 16:31:14 2012] [error] [client 217.126.29.45] File does not
> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
> > [Thu Mar 01 16:31:14 2012] [error] [client 83.34.151.133] (13)Permission
> denied: exec of '/var/www/go_away.html' failed
> > [Thu Mar 01 16:31:14 2012] [error] [client 83.34.151.133] Premature end
> of script headers: go_away.html
> > [Thu Mar 01 16:31:14 2012] [error] [client 83.42.159.135] (13)Permission
> denied: exec of '/var/www/go_away.html' failed
> > [Thu Mar 01 16:31:14 2012] [error] [client 83.42.159.135] Premature end
> of script headers: go_away.html
> > [Thu Mar 01 16:31:14 2012] [error] [client 79.148.190.156] File does not
> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
> > [Thu Mar 01 16:31:16 2012] [error] [client 80.34.128.246] File does not
> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
> > [Thu Mar 01 16:31:17 2012] [error] [client 83.55.242.122] File does not
> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
> > [Thu Mar 01 16:31:17 2012] [error] [client 88.18.154.61] File does not
> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
> > [Thu Mar 01 16:31:17 2012] [error] [client 217.127.7.73] File does not
> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
> > [Thu Mar 01 16:31:17 2012] [error] [client 80.28.208.232] (13)Permission
> denied: exec of '/var/www/go_away.html' failed
> > [Thu Mar 01 16:31:17 2012] [error] [client 80.28.208.232] Premature end
> of script headers: go_away.html
> > [Thu Mar 01 16:31:17 2012] [error] [client 217.127.7.73] File does not
> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
> > [Thu Mar 01 16:31:18 2012] [error] [client 80.35.91.44] File does not
> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
> > [Thu Mar 01 16:31:18 2012] [error] [client 88.27.241.160] File does not
> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
> >
> >
> > El 1 de marzo de 2012 16:24, Antonio Fernández Pérez <
> antoniofernan...@fabergames.com> escribió:
> >
> > Hi again,
> >
> > I have tried to configure this in my virtualhost of Apache but does not
> works. I have defined in virtualhost config file this: Alias
> /cgi-bin/cbws1084.dll "/var/www/go_away.html"
> > Then, I have executed #service apache2 reload, the Apache's error log
> continues growing a lot (because continues .dll request).
> >
> > Something is wrong in my configuration. Please help me.
> >
> > Thanks.
> >
> > Best regards,
> >
> > Toni.
> >
> > El 1 de marzo de 2012 15:47, Steve Swift 
> escribió:
> >
> > My apologies; gmail disguised the Spanish so I didn't realise until too
> late. I should have been more careful with my English.
> >
> > If you added:
> >
> >   Alias /cgi-bin/cbws1084.dll /var/apache2/html/go_away.html
> >
> > ... to your apache configuration, then any request for
> /cgi-bin/cbws1084.dll would be served from page /go_away.html in your
> document root; you'd have to adjust the path to suit your system.
> >
> > You could put anything in there, such as

Re: [users@httpd] Problems with cgi scripts and Apache's log.

2012-03-01 Thread Jim Jagielski
Which do you want: to stop the logfiles from growing or deny the
requests?

Or both?

On Mar 1, 2012, at 11:40 AM, Antonio Fernández Pérez wrote:

> Hi again, 
> 
> My apologies for these messages. Now, I have checked it and is growing the 
> access log file. How can I do to deny these requests? I'm trying to configure 
> Apache to deny all requests that tries to execute .dll files ind cgi-bin 
> directory. Any idea? I don't know how can I do it.
> 
> Thanks.
> 
> Best regards, 
> 
> Toni.
> 
> El 1 de marzo de 2012 17:09, Antonio Fernández Pérez 
>  escribió:
> Thanks for your help. 
> 
> I have gotten it doing this: 
> AliasMatch ^/cgi-bin/(.*)\.dll$ /var/www/go_away.html
> 
> Now Apache doesn't log errors about dll loads. Do you think that is it 
> correct?
> 
> Thanks. 
> 
> Best regards, 
> 
> Toni.
> 
> El 1 de marzo de 2012 16:32, Antonio Fernández Pérez 
>  escribió:
> 
> I put an error log output.
> 
> Thanks,
> 
> [Thu Mar 01 16:31:10 2012] [error] [client 80.24.29.20] script not found or 
> unable to stat: /var/www/www.fabergames.net/cgi-bin/cbws1084x.dll
> [Thu Mar 01 16:31:12 2012] [error] [client 88.23.110.4] script not found or 
> unable to stat: /var/www/www.fabergames.net/cgi-bin/cbws1084x.dll
> [Thu Mar 01 16:31:12 2012] [error] [client 217.127.6.33] File does not exist: 
> /var/www/www.fabergames.net/Fabergames/cgi-bin
> [Thu Mar 01 16:31:13 2012] [error] [client 212.36.73.27] File does not exist: 
> /var/www/www.fabergames.net/Fabergames/cgi-bin
> [Thu Mar 01 16:31:14 2012] [error] [client 217.126.29.45] File does not 
> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
> [Thu Mar 01 16:31:14 2012] [error] [client 83.34.151.133] (13)Permission 
> denied: exec of '/var/www/go_away.html' failed
> [Thu Mar 01 16:31:14 2012] [error] [client 83.34.151.133] Premature end of 
> script headers: go_away.html
> [Thu Mar 01 16:31:14 2012] [error] [client 83.42.159.135] (13)Permission 
> denied: exec of '/var/www/go_away.html' failed
> [Thu Mar 01 16:31:14 2012] [error] [client 83.42.159.135] Premature end of 
> script headers: go_away.html
> [Thu Mar 01 16:31:14 2012] [error] [client 79.148.190.156] File does not 
> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
> [Thu Mar 01 16:31:16 2012] [error] [client 80.34.128.246] File does not 
> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
> [Thu Mar 01 16:31:17 2012] [error] [client 83.55.242.122] File does not 
> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
> [Thu Mar 01 16:31:17 2012] [error] [client 88.18.154.61] File does not exist: 
> /var/www/www.fabergames.net/Fabergames/cgi-bin
> [Thu Mar 01 16:31:17 2012] [error] [client 217.127.7.73] File does not exist: 
> /var/www/www.fabergames.net/Fabergames/cgi-bin
> [Thu Mar 01 16:31:17 2012] [error] [client 80.28.208.232] (13)Permission 
> denied: exec of '/var/www/go_away.html' failed
> [Thu Mar 01 16:31:17 2012] [error] [client 80.28.208.232] Premature end of 
> script headers: go_away.html
> [Thu Mar 01 16:31:17 2012] [error] [client 217.127.7.73] File does not exist: 
> /var/www/www.fabergames.net/Fabergames/cgi-bin
> [Thu Mar 01 16:31:18 2012] [error] [client 80.35.91.44] File does not exist: 
> /var/www/www.fabergames.net/Fabergames/cgi-bin
> [Thu Mar 01 16:31:18 2012] [error] [client 88.27.241.160] File does not 
> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
> 
> 
> El 1 de marzo de 2012 16:24, Antonio Fernández Pérez 
>  escribió:
> 
> Hi again, 
> 
> I have tried to configure this in my virtualhost of Apache but does not 
> works. I have defined in virtualhost config file this: Alias 
> /cgi-bin/cbws1084.dll "/var/www/go_away.html"
> Then, I have executed #service apache2 reload, the Apache's error log 
> continues growing a lot (because continues .dll request). 
> 
> Something is wrong in my configuration. Please help me.
> 
> Thanks.
> 
> Best regards, 
> 
> Toni. 
> 
> El 1 de marzo de 2012 15:47, Steve Swift  escribió:
> 
> My apologies; gmail disguised the Spanish so I didn't realise until too late. 
> I should have been more careful with my English.
> 
> If you added:
> 
>   Alias /cgi-bin/cbws1084.dll /var/apache2/html/go_away.html
> 
> ... to your apache configuration, then any request for /cgi-bin/cbws1084.dll 
> would be served from page /go_away.html in your document root; you'd have to 
> adjust the path to suit your system.
> 
> You could put anything in there, such as:
> 
> Page not foundPlease stop using URI /cgi-bin/cbws1084.dll
> 
> 2012/3/1 Antonio Fernández Pérez 
> Hi Steve 
> 
> Thanks for your reply. I don't understand what I should to do. Can you 
> explain me it again?
> 
> Thanks.
> 
> Best regards, 
> 
> Toni.
> 
> El 1 de marzo de 2012 12:44, Steve Swift  escribió:
> You could alias /cgi-bin/cbws1084.dll to /sod_off.html
> 
> 2012/3/1 Antonio Fernández Pérez 
> Hi everybody, 
> 
> I'm having problems with my Apache. Apache's log of my server is growing a 
> lot because somebody tries to execute this file "cgi-bin/cbws1084.dll" tha

Re: [users@httpd] Problems with cgi scripts and Apache's log.

2012-03-01 Thread Tom Evans
2012/3/1 Antonio Fernández Pérez 

> Hi again,
>
> My apologies for these messages. Now, I have checked it and is growing the
> access log file. How can I do to deny these requests? I'm trying to
> configure Apache to deny all requests that tries to execute .dll files ind
> cgi-bin directory. Any idea? I don't know how can I do it.
>
>
These people are attempting to find holes in your webserver. They aren't
succeeding, but you want to make it so that none of this is logged, neither
in error log nor access log. This is not wise.

If you put a webserver on the internet, people will try and access weird
locations on it. So what? Rotate your logs, expire/delete old logs, and
stop worrying about it.

Anyway, to answer your question, access log entries can be controlled by
environment variables. See the documentation for CustomLog for an example
of this.

http://httpd.apache.org/docs/2.2/mod/mod_log_config.html#customlog

Cheers

Tom


Re: [users@httpd] Problems with cgi scripts and Apache's log.

2012-03-01 Thread Mark Montague
On March 1, 2012 11:40 , =?ISO-8859-1?Q?Antonio_Fern=E1ndez_P=E9rez?= 
 wrote:
My apologies for these messages. Now, I have checked it and is growing 
the access log file. How can I do to deny these requests? I'm trying 
to configure Apache to deny all requests that tries to execute .dll 
files ind cgi-bin directory. Any idea? I don't know how can I do it.


Unless you completely turn off logging, so that no requests get logged, 
then your log files will grow.  If you have access logs turned on, then 
any successful request -- such as for the go_away.html page when someone 
attempts to access a .dll file in the cgi-bin directory -- will get 
logged.  If you have error logs turned on, then all unsuccessful 
requests, including all requests for files that do not exist AND all 
requests which are denied -- will get logged.


I strongly recommend keeping both access logging and error logging 
turned on so that you know what is going on with your server.


Why is it a problem for you that the access logs and error logs grow?  
If it's a disk space problem, you really should get more disk space, or 
look into remote logging to a separate machine.  If it's a problem with 
having things in the log files that you don't want to see ("cruft" or 
"noise" in the log files), then use a program that analyzes log files 
for you, makes them more intelligible, and generates reports -- there 
are many programs that will do this, and these programs take many 
different approaches.  Some programs to look into include Splunk, 
logwatch, swatch, AWstats, Analog, and Webalizer.  Do a google search on 
"log file analyzer" or "log file filter", or describe what you want to 
do on this mailing list and ask for advice.


--
  Mark Montague
  m...@catseye.org


-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
  "   from the digest: users-digest-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org



Re: [users@httpd] Problems with cgi scripts and Apache's log.

2012-03-01 Thread Antonio Fernández Pérez
Hi again,

My apologies for these messages. Now, I have checked it and is growing the
access log file. How can I do to deny these requests? I'm trying to
configure Apache to deny all requests that tries to execute .dll files ind
cgi-bin directory. Any idea? I don't know how can I do it.

Thanks.

Best regards,

Toni.

El 1 de marzo de 2012 17:09, Antonio Fernández Pérez <
antoniofernan...@fabergames.com> escribió:

> Thanks for your help.
>
> I have gotten it doing this:
> AliasMatch ^/cgi-bin/(.*)\.dll$ /var/www/go_away.html
>
> Now Apache doesn't log errors about dll loads. Do you think that is it
> correct?
>
> Thanks.
>
> Best regards,
>
> Toni.
>
> El 1 de marzo de 2012 16:32, Antonio Fernández Pérez <
> antoniofernan...@fabergames.com> escribió:
>
> I put an error log output.
>>
>> Thanks,
>>
>> [Thu Mar 01 16:31:10 2012] [error] [client 80.24.29.20] script not found
>> or unable to stat: /var/www/www.fabergames.net/cgi-bin/cbws1084x.dll
>> [Thu Mar 01 16:31:12 2012] [error] [client 88.23.110.4] script not found
>> or unable to stat: /var/www/www.fabergames.net/cgi-bin/cbws1084x.dll
>> [Thu Mar 01 16:31:12 2012] [error] [client 217.127.6.33] File does not
>> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
>> [Thu Mar 01 16:31:13 2012] [error] [client 212.36.73.27] File does not
>> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
>> [Thu Mar 01 16:31:14 2012] [error] [client 217.126.29.45] File does not
>> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
>> [Thu Mar 01 16:31:14 2012] [error] [client 83.34.151.133] (13)Permission
>> denied: exec of '/var/www/go_away.html' failed
>> [Thu Mar 01 16:31:14 2012] [error] [client 83.34.151.133] Premature end
>> of script headers: go_away.html
>> [Thu Mar 01 16:31:14 2012] [error] [client 83.42.159.135] (13)Permission
>> denied: exec of '/var/www/go_away.html' failed
>> [Thu Mar 01 16:31:14 2012] [error] [client 83.42.159.135] Premature end
>> of script headers: go_away.html
>> [Thu Mar 01 16:31:14 2012] [error] [client 79.148.190.156] File does not
>> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
>> [Thu Mar 01 16:31:16 2012] [error] [client 80.34.128.246] File does not
>> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
>> [Thu Mar 01 16:31:17 2012] [error] [client 83.55.242.122] File does not
>> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
>> [Thu Mar 01 16:31:17 2012] [error] [client 88.18.154.61] File does not
>> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
>> [Thu Mar 01 16:31:17 2012] [error] [client 217.127.7.73] File does not
>> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
>> [Thu Mar 01 16:31:17 2012] [error] [client 80.28.208.232] (13)Permission
>> denied: exec of '/var/www/go_away.html' failed
>> [Thu Mar 01 16:31:17 2012] [error] [client 80.28.208.232] Premature end
>> of script headers: go_away.html
>> [Thu Mar 01 16:31:17 2012] [error] [client 217.127.7.73] File does not
>> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
>> [Thu Mar 01 16:31:18 2012] [error] [client 80.35.91.44] File does not
>> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
>> [Thu Mar 01 16:31:18 2012] [error] [client 88.27.241.160] File does not
>> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
>>
>>
>> El 1 de marzo de 2012 16:24, Antonio Fernández Pérez <
>> antoniofernan...@fabergames.com> escribió:
>>
>> Hi again,
>>>
>>> I have tried to configure this in my virtualhost of Apache but does not
>>> works. I have defined in virtualhost config file this: Alias
>>> /cgi-bin/cbws1084.dll "/var/www/go_away.html"
>>> Then, I have executed #service apache2 reload, the Apache's error log
>>> continues growing a lot (because continues .dll request).
>>>
>>> Something is wrong in my configuration. Please help me.
>>>
>>> Thanks.
>>>
>>> Best regards,
>>>
>>> Toni.
>>>
>>> El 1 de marzo de 2012 15:47, Steve Swift escribió:
>>>
>>> My apologies; gmail disguised the Spanish so I didn't realise until too
 late. I should have been more careful with my English.

 If you added:

   Alias /cgi-bin/cbws1084.dll /var/apache2/html/go_away.html

 ... to your apache configuration, then any request for
 /cgi-bin/cbws1084.dll would be served from page /go_away.html in your
 document root; you'd have to adjust the path to suit your system.

 You could put anything in there, such as:

 Page not foundPlease stop using URI
 /cgi-bin/cbws1084.dll

 2012/3/1 Antonio Fernández Pérez 

> Hi Steve
>
> Thanks for your reply. I don't understand what I should to do. Can you
> explain me it again?
>
> Thanks.
>
> Best regards,
>
> Toni.
>
> El 1 de marzo de 2012 12:44, Steve Swift escribió:
>
>> You could alias /cgi-bin/cbws1084.dll to /sod_off.html
>>
>> 2012/3/1 Antonio Fernández Pérez 
>>
>>> Hi everybody,
>>>
>>> I'm having problems with my Apache. Apache's log of my server is
>>> g

Re: [users@httpd] Problems with cgi scripts and Apache's log.

2012-03-01 Thread Antonio Fernández Pérez
Thanks for your help.

I have gotten it doing this:
AliasMatch ^/cgi-bin/(.*)\.dll$ /var/www/go_away.html

Now Apache doesn't log errors about dll loads. Do you think that is it
correct?

Thanks.

Best regards,

Toni.

El 1 de marzo de 2012 16:32, Antonio Fernández Pérez <
antoniofernan...@fabergames.com> escribió:

> I put an error log output.
>
> Thanks,
>
> [Thu Mar 01 16:31:10 2012] [error] [client 80.24.29.20] script not found
> or unable to stat: /var/www/www.fabergames.net/cgi-bin/cbws1084x.dll
> [Thu Mar 01 16:31:12 2012] [error] [client 88.23.110.4] script not found
> or unable to stat: /var/www/www.fabergames.net/cgi-bin/cbws1084x.dll
> [Thu Mar 01 16:31:12 2012] [error] [client 217.127.6.33] File does not
> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
> [Thu Mar 01 16:31:13 2012] [error] [client 212.36.73.27] File does not
> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
> [Thu Mar 01 16:31:14 2012] [error] [client 217.126.29.45] File does not
> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
> [Thu Mar 01 16:31:14 2012] [error] [client 83.34.151.133] (13)Permission
> denied: exec of '/var/www/go_away.html' failed
> [Thu Mar 01 16:31:14 2012] [error] [client 83.34.151.133] Premature end of
> script headers: go_away.html
> [Thu Mar 01 16:31:14 2012] [error] [client 83.42.159.135] (13)Permission
> denied: exec of '/var/www/go_away.html' failed
> [Thu Mar 01 16:31:14 2012] [error] [client 83.42.159.135] Premature end of
> script headers: go_away.html
> [Thu Mar 01 16:31:14 2012] [error] [client 79.148.190.156] File does not
> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
> [Thu Mar 01 16:31:16 2012] [error] [client 80.34.128.246] File does not
> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
> [Thu Mar 01 16:31:17 2012] [error] [client 83.55.242.122] File does not
> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
> [Thu Mar 01 16:31:17 2012] [error] [client 88.18.154.61] File does not
> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
> [Thu Mar 01 16:31:17 2012] [error] [client 217.127.7.73] File does not
> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
> [Thu Mar 01 16:31:17 2012] [error] [client 80.28.208.232] (13)Permission
> denied: exec of '/var/www/go_away.html' failed
> [Thu Mar 01 16:31:17 2012] [error] [client 80.28.208.232] Premature end of
> script headers: go_away.html
> [Thu Mar 01 16:31:17 2012] [error] [client 217.127.7.73] File does not
> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
> [Thu Mar 01 16:31:18 2012] [error] [client 80.35.91.44] File does not
> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
> [Thu Mar 01 16:31:18 2012] [error] [client 88.27.241.160] File does not
> exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
>
>
> El 1 de marzo de 2012 16:24, Antonio Fernández Pérez <
> antoniofernan...@fabergames.com> escribió:
>
> Hi again,
>>
>> I have tried to configure this in my virtualhost of Apache but does not
>> works. I have defined in virtualhost config file this: Alias
>> /cgi-bin/cbws1084.dll "/var/www/go_away.html"
>> Then, I have executed #service apache2 reload, the Apache's error log
>> continues growing a lot (because continues .dll request).
>>
>> Something is wrong in my configuration. Please help me.
>>
>> Thanks.
>>
>> Best regards,
>>
>> Toni.
>>
>> El 1 de marzo de 2012 15:47, Steve Swift escribió:
>>
>> My apologies; gmail disguised the Spanish so I didn't realise until too
>>> late. I should have been more careful with my English.
>>>
>>> If you added:
>>>
>>>   Alias /cgi-bin/cbws1084.dll /var/apache2/html/go_away.html
>>>
>>> ... to your apache configuration, then any request for
>>> /cgi-bin/cbws1084.dll would be served from page /go_away.html in your
>>> document root; you'd have to adjust the path to suit your system.
>>>
>>> You could put anything in there, such as:
>>>
>>> Page not foundPlease stop using URI /cgi-bin/cbws1084.dll
>>>
>>> 2012/3/1 Antonio Fernández Pérez 
>>>
 Hi Steve

 Thanks for your reply. I don't understand what I should to do. Can you
 explain me it again?

 Thanks.

 Best regards,

 Toni.

 El 1 de marzo de 2012 12:44, Steve Swift escribió:

> You could alias /cgi-bin/cbws1084.dll to /sod_off.html
>
> 2012/3/1 Antonio Fernández Pérez 
>
>> Hi everybody,
>>
>> I'm having problems with my Apache. Apache's log of my server is
>> growing a lot because somebody tries to execute this file
>> "cgi-bin/cbws1084.dll" that doesn't exist. Anybody can tell me if is
>> possible disable this or how can I do to solve it?
>>
>> Thanks.
>>
>> Best regards,
>>
>> Toni.
>>
>> --
>>
>> *Antonio Manuel Fernández Pérez*
>>
>> Ingeniero Técnico Informático
>>
>> Dpto. Informático Fabergames S.L.
>>
>> TLF:96626 / FAX:966551801
>>
>> www.fabergames.com
>> Fabergames respeta su 
>> privacidad

Re: [users@httpd] Problems with cgi scripts and Apache's log.

2012-03-01 Thread Antonio Fernández Pérez
I put an error log output.

Thanks,

[Thu Mar 01 16:31:10 2012] [error] [client 80.24.29.20] script not found or
unable to stat: /var/www/www.fabergames.net/cgi-bin/cbws1084x.dll
[Thu Mar 01 16:31:12 2012] [error] [client 88.23.110.4] script not found or
unable to stat: /var/www/www.fabergames.net/cgi-bin/cbws1084x.dll
[Thu Mar 01 16:31:12 2012] [error] [client 217.127.6.33] File does not
exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
[Thu Mar 01 16:31:13 2012] [error] [client 212.36.73.27] File does not
exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
[Thu Mar 01 16:31:14 2012] [error] [client 217.126.29.45] File does not
exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
[Thu Mar 01 16:31:14 2012] [error] [client 83.34.151.133] (13)Permission
denied: exec of '/var/www/go_away.html' failed
[Thu Mar 01 16:31:14 2012] [error] [client 83.34.151.133] Premature end of
script headers: go_away.html
[Thu Mar 01 16:31:14 2012] [error] [client 83.42.159.135] (13)Permission
denied: exec of '/var/www/go_away.html' failed
[Thu Mar 01 16:31:14 2012] [error] [client 83.42.159.135] Premature end of
script headers: go_away.html
[Thu Mar 01 16:31:14 2012] [error] [client 79.148.190.156] File does not
exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
[Thu Mar 01 16:31:16 2012] [error] [client 80.34.128.246] File does not
exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
[Thu Mar 01 16:31:17 2012] [error] [client 83.55.242.122] File does not
exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
[Thu Mar 01 16:31:17 2012] [error] [client 88.18.154.61] File does not
exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
[Thu Mar 01 16:31:17 2012] [error] [client 217.127.7.73] File does not
exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
[Thu Mar 01 16:31:17 2012] [error] [client 80.28.208.232] (13)Permission
denied: exec of '/var/www/go_away.html' failed
[Thu Mar 01 16:31:17 2012] [error] [client 80.28.208.232] Premature end of
script headers: go_away.html
[Thu Mar 01 16:31:17 2012] [error] [client 217.127.7.73] File does not
exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
[Thu Mar 01 16:31:18 2012] [error] [client 80.35.91.44] File does not
exist: /var/www/www.fabergames.net/Fabergames/cgi-bin
[Thu Mar 01 16:31:18 2012] [error] [client 88.27.241.160] File does not
exist: /var/www/www.fabergames.net/Fabergames/cgi-bin


El 1 de marzo de 2012 16:24, Antonio Fernández Pérez <
antoniofernan...@fabergames.com> escribió:

> Hi again,
>
> I have tried to configure this in my virtualhost of Apache but does not
> works. I have defined in virtualhost config file this: Alias
> /cgi-bin/cbws1084.dll "/var/www/go_away.html"
> Then, I have executed #service apache2 reload, the Apache's error log
> continues growing a lot (because continues .dll request).
>
> Something is wrong in my configuration. Please help me.
>
> Thanks.
>
> Best regards,
>
> Toni.
>
> El 1 de marzo de 2012 15:47, Steve Swift  escribió:
>
> My apologies; gmail disguised the Spanish so I didn't realise until too
>> late. I should have been more careful with my English.
>>
>> If you added:
>>
>>   Alias /cgi-bin/cbws1084.dll /var/apache2/html/go_away.html
>>
>> ... to your apache configuration, then any request for
>> /cgi-bin/cbws1084.dll would be served from page /go_away.html in your
>> document root; you'd have to adjust the path to suit your system.
>>
>> You could put anything in there, such as:
>>
>> Page not foundPlease stop using URI /cgi-bin/cbws1084.dll
>>
>> 2012/3/1 Antonio Fernández Pérez 
>>
>>> Hi Steve
>>>
>>> Thanks for your reply. I don't understand what I should to do. Can you
>>> explain me it again?
>>>
>>> Thanks.
>>>
>>> Best regards,
>>>
>>> Toni.
>>>
>>> El 1 de marzo de 2012 12:44, Steve Swift escribió:
>>>
 You could alias /cgi-bin/cbws1084.dll to /sod_off.html

 2012/3/1 Antonio Fernández Pérez 

> Hi everybody,
>
> I'm having problems with my Apache. Apache's log of my server is
> growing a lot because somebody tries to execute this file
> "cgi-bin/cbws1084.dll" that doesn't exist. Anybody can tell me if is
> possible disable this or how can I do to solve it?
>
> Thanks.
>
> Best regards,
>
> Toni.
>
> --
>
> *Antonio Manuel Fernández Pérez*
>
> Ingeniero Técnico Informático
>
> Dpto. Informático Fabergames S.L.
>
> TLF:96626 / FAX:966551801
>
> www.fabergames.com
> Fabergames respeta su 
> privacidad
>
> * * * ADVERTENCIA LEGAL * * *
>
> Le informamos, como destinatario de este mensaje, que el correo
> electrónico y las comunicaciones por medio de Internet no permiten 
> asegurar
> ni garantizar la confidencialidad de los mensajes transmitidos, así como
> tampoco su integridad o su correcta recepción, por lo que FABERGAMES S.L.
> no asume responsabilidad alguna

Re: [users@httpd] Problems with cgi scripts and Apache's log.

2012-03-01 Thread Antonio Fernández Pérez
Hi again,

I have tried to configure this in my virtualhost of Apache but does not
works. I have defined in virtualhost config file this: Alias
/cgi-bin/cbws1084.dll "/var/www/go_away.html"
Then, I have executed #service apache2 reload, the Apache's error log
continues growing a lot (because continues .dll request).

Something is wrong in my configuration. Please help me.

Thanks.

Best regards,

Toni.

El 1 de marzo de 2012 15:47, Steve Swift  escribió:

> My apologies; gmail disguised the Spanish so I didn't realise until too
> late. I should have been more careful with my English.
>
> If you added:
>
>   Alias /cgi-bin/cbws1084.dll /var/apache2/html/go_away.html
>
> ... to your apache configuration, then any request for
> /cgi-bin/cbws1084.dll would be served from page /go_away.html in your
> document root; you'd have to adjust the path to suit your system.
>
> You could put anything in there, such as:
>
> Page not foundPlease stop using URI /cgi-bin/cbws1084.dll
>
> 2012/3/1 Antonio Fernández Pérez 
>
>> Hi Steve
>>
>> Thanks for your reply. I don't understand what I should to do. Can you
>> explain me it again?
>>
>> Thanks.
>>
>> Best regards,
>>
>> Toni.
>>
>> El 1 de marzo de 2012 12:44, Steve Swift escribió:
>>
>>> You could alias /cgi-bin/cbws1084.dll to /sod_off.html
>>>
>>> 2012/3/1 Antonio Fernández Pérez 
>>>
 Hi everybody,

 I'm having problems with my Apache. Apache's log of my server is
 growing a lot because somebody tries to execute this file
 "cgi-bin/cbws1084.dll" that doesn't exist. Anybody can tell me if is
 possible disable this or how can I do to solve it?

 Thanks.

 Best regards,

 Toni.

 --

 *Antonio Manuel Fernández Pérez*

 Ingeniero Técnico Informático

 Dpto. Informático Fabergames S.L.

 TLF:96626 / FAX:966551801

 www.fabergames.com
 Fabergames respeta su 
 privacidad

 * * * ADVERTENCIA LEGAL * * *

 Le informamos, como destinatario de este mensaje, que el correo
 electrónico y las comunicaciones por medio de Internet no permiten asegurar
 ni garantizar la confidencialidad de los mensajes transmitidos, así como
 tampoco su integridad o su correcta recepción, por lo que FABERGAMES S.L.
 no asume responsabilidad alguna por tales circunstancias. Si no consintiese
 en la utilización del correo electrónico o de las comunicaciones vía
 Internet le rogamos nos lo comunique y ponga en nuestro conocimiento de
 manera inmediata. Este mensaje va dirigido, de manera exclusiva, a su
 destinatario y contiene información confidencial y sujeta al secreto
 profesional, cuya divulgación no está permitida por la ley. En caso de
 haber recibido este mensaje por error, le rogamos que, de forma inmediata,
 nos lo comunique mediante correo electrónico remitido a nuestra atención o
 a través del teléfono (+ 34) 966 26 11 11 y proceda a su eliminación,
 así como a la de cualquier documento adjunto al mismo. Asimismo, le
 comunicamos que la distribución, copia o utilización de este mensaje, o de
 cualquier documento adjunto al mismo, cualquiera que fuera su finalidad,
 están prohibidas por la ley.




>>>
>>>
>>> --
>>> Steve Swift
>>> http://www.swiftys.org.uk
>>>
>>
>>
>>
>> --
>>
>> *Antonio Manuel Fernández Pérez*
>>
>> Ingeniero Técnico Informático
>>
>> Dpto. Informático Fabergames S.L.
>>
>> TLF:96626 / FAX:966551801
>>
>> www.fabergames.com
>> Fabergames respeta su 
>> privacidad
>>
>> * * * ADVERTENCIA LEGAL * * *
>>
>> Le informamos, como destinatario de este mensaje, que el correo
>> electrónico y las comunicaciones por medio de Internet no permiten asegurar
>> ni garantizar la confidencialidad de los mensajes transmitidos, así como
>> tampoco su integridad o su correcta recepción, por lo que FABERGAMES S.L.
>> no asume responsabilidad alguna por tales circunstancias. Si no consintiese
>> en la utilización del correo electrónico o de las comunicaciones vía
>> Internet le rogamos nos lo comunique y ponga en nuestro conocimiento de
>> manera inmediata. Este mensaje va dirigido, de manera exclusiva, a su
>> destinatario y contiene información confidencial y sujeta al secreto
>> profesional, cuya divulgación no está permitida por la ley. En caso de
>> haber recibido este mensaje por error, le rogamos que, de forma inmediata,
>> nos lo comunique mediante correo electrónico remitido a nuestra atención o
>> a través del teléfono (+ 34) 966 26 11 11 y proceda a su eliminación,
>> así como a la de cualquier documento adjunto al mismo. Asimismo, le
>> comunicamos que la distribución, copia o utilización de este mensaje, o de
>> cualquier documento adjunto al mismo, cualquiera que fuera su finalidad,
>> están pro

Re: [users@httpd] Problems with cgi scripts and Apache's log.

2012-03-01 Thread Steve Swift
My apologies; gmail disguised the Spanish so I didn't realise until too
late. I should have been more careful with my English.

If you added:

  Alias /cgi-bin/cbws1084.dll /var/apache2/html/go_away.html

... to your apache configuration, then any request for
/cgi-bin/cbws1084.dll would be served from page /go_away.html in your
document root; you'd have to adjust the path to suit your system.

You could put anything in there, such as:

Page not foundPlease stop using URI /cgi-bin/cbws1084.dll

2012/3/1 Antonio Fernández Pérez 

> Hi Steve
>
> Thanks for your reply. I don't understand what I should to do. Can you
> explain me it again?
>
> Thanks.
>
> Best regards,
>
> Toni.
>
> El 1 de marzo de 2012 12:44, Steve Swift  escribió:
>
>> You could alias /cgi-bin/cbws1084.dll to /sod_off.html
>>
>> 2012/3/1 Antonio Fernández Pérez 
>>
>>> Hi everybody,
>>>
>>> I'm having problems with my Apache. Apache's log of my server is growing
>>> a lot because somebody tries to execute this file "cgi-bin/cbws1084.dll"
>>> that doesn't exist. Anybody can tell me if is possible disable this or how
>>> can I do to solve it?
>>>
>>> Thanks.
>>>
>>> Best regards,
>>>
>>> Toni.
>>>
>>> --
>>>
>>> *Antonio Manuel Fernández Pérez*
>>>
>>> Ingeniero Técnico Informático
>>>
>>> Dpto. Informático Fabergames S.L.
>>>
>>> TLF:96626 / FAX:966551801
>>>
>>> www.fabergames.com
>>> Fabergames respeta su 
>>> privacidad
>>>
>>> * * * ADVERTENCIA LEGAL * * *
>>>
>>> Le informamos, como destinatario de este mensaje, que el correo
>>> electrónico y las comunicaciones por medio de Internet no permiten asegurar
>>> ni garantizar la confidencialidad de los mensajes transmitidos, así como
>>> tampoco su integridad o su correcta recepción, por lo que FABERGAMES S.L.
>>> no asume responsabilidad alguna por tales circunstancias. Si no consintiese
>>> en la utilización del correo electrónico o de las comunicaciones vía
>>> Internet le rogamos nos lo comunique y ponga en nuestro conocimiento de
>>> manera inmediata. Este mensaje va dirigido, de manera exclusiva, a su
>>> destinatario y contiene información confidencial y sujeta al secreto
>>> profesional, cuya divulgación no está permitida por la ley. En caso de
>>> haber recibido este mensaje por error, le rogamos que, de forma inmediata,
>>> nos lo comunique mediante correo electrónico remitido a nuestra atención o
>>> a través del teléfono (+ 34) 966 26 11 11 y proceda a su eliminación,
>>> así como a la de cualquier documento adjunto al mismo. Asimismo, le
>>> comunicamos que la distribución, copia o utilización de este mensaje, o de
>>> cualquier documento adjunto al mismo, cualquiera que fuera su finalidad,
>>> están prohibidas por la ley.
>>>
>>>
>>>
>>>
>>
>>
>> --
>> Steve Swift
>> http://www.swiftys.org.uk
>>
>
>
>
> --
>
> *Antonio Manuel Fernández Pérez*
>
> Ingeniero Técnico Informático
>
> Dpto. Informático Fabergames S.L.
>
> TLF:96626 / FAX:966551801
>
> www.fabergames.com
> Fabergames respeta su 
> privacidad
>
> * * * ADVERTENCIA LEGAL * * *
>
> Le informamos, como destinatario de este mensaje, que el correo
> electrónico y las comunicaciones por medio de Internet no permiten asegurar
> ni garantizar la confidencialidad de los mensajes transmitidos, así como
> tampoco su integridad o su correcta recepción, por lo que FABERGAMES S.L.
> no asume responsabilidad alguna por tales circunstancias. Si no consintiese
> en la utilización del correo electrónico o de las comunicaciones vía
> Internet le rogamos nos lo comunique y ponga en nuestro conocimiento de
> manera inmediata. Este mensaje va dirigido, de manera exclusiva, a su
> destinatario y contiene información confidencial y sujeta al secreto
> profesional, cuya divulgación no está permitida por la ley. En caso de
> haber recibido este mensaje por error, le rogamos que, de forma inmediata,
> nos lo comunique mediante correo electrónico remitido a nuestra atención o
> a través del teléfono (+ 34) 966 26 11 11 y proceda a su eliminación, así
> como a la de cualquier documento adjunto al mismo. Asimismo, le comunicamos
> que la distribución, copia o utilización de este mensaje, o de cualquier
> documento adjunto al mismo, cualquiera que fuera su finalidad, están
> prohibidas por la ley.
>
>
>
>


-- 
Steve Swift
http://www.swiftys.org.uk


Re: [users@httpd] Problems with cgi scripts and Apache's log.

2012-03-01 Thread Mark Montague
On March 1, 2012 6:48 , =?ISO-8859-1?Q?Antonio_Fern=E1ndez_P=E9rez?= 
 wrote:


2012/3/1 Antonio Fernández Pérez mailto:antoniofernan...@fabergames.com>:


I'm having problems with my Apache. Apache's log of my server
is growing a lot because somebody tries to execute this file
"cgi-bin/cbws1084.dll" that doesn't exist. Anybody can tell me
if is possible disable this or how can I do to solve it?

El 1 de marzo de 2012 12:44, Steve Swift > escribió:

You could alias /cgi-bin/cbws1084.dll to /sod_off.html

Thanks for your reply. I don't understand what I should to do. Can you 
explain me it again?


He means: set up an Alias, Redirect, or RewriteRule directive to 
intercept requests for /cgi-bin/cbws1084.dll and serve an HTML page, 
instead, that tells the person to go away (or gives them another error 
message).  Since the person will be getting a real HTML page, you will 
not get errors in your Apache HTTP Server error log about the thing that 
they are requesting not existing.


For more information and for examples, please read the Apache HTTP 
Server documentation:


https://httpd.apache.org/docs/2.2/mod/mod_alias.html#alias
https://httpd.apache.org/docs/2.2/mod/mod_alias.html#redirect
https://httpd.apache.org/docs/2.2/mod/mod_rewrite.html#rewriterule
https://httpd.apache.org/docs/2.2/rewrite/

Or, if the person requesting cgi-bin/cbws1084.dll is always requesting 
it from the same IP address, block that IP address at your network-level 
or host-level firewall.  This will prevent the requests from getting to 
Apache HTTP Server and from getting logged.


--
  Mark Montague
  m...@catseye.org


-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
  "   from the digest: users-digest-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org



Re: [users@httpd] Problems with cgi scripts and Apache's log.

2012-03-01 Thread Antonio Fernández Pérez
Hi Steve

Thanks for your reply. I don't understand what I should to do. Can you
explain me it again?

Thanks.

Best regards,

Toni.

El 1 de marzo de 2012 12:44, Steve Swift  escribió:

> You could alias /cgi-bin/cbws1084.dll to /sod_off.html
>
> 2012/3/1 Antonio Fernández Pérez 
>
>> Hi everybody,
>>
>> I'm having problems with my Apache. Apache's log of my server is growing
>> a lot because somebody tries to execute this file "cgi-bin/cbws1084.dll"
>> that doesn't exist. Anybody can tell me if is possible disable this or how
>> can I do to solve it?
>>
>> Thanks.
>>
>> Best regards,
>>
>> Toni.
>>
>> --
>>
>> *Antonio Manuel Fernández Pérez*
>>
>> Ingeniero Técnico Informático
>>
>> Dpto. Informático Fabergames S.L.
>>
>> TLF:96626 / FAX:966551801
>>
>> www.fabergames.com
>> Fabergames respeta su 
>> privacidad
>>
>> * * * ADVERTENCIA LEGAL * * *
>>
>> Le informamos, como destinatario de este mensaje, que el correo
>> electrónico y las comunicaciones por medio de Internet no permiten asegurar
>> ni garantizar la confidencialidad de los mensajes transmitidos, así como
>> tampoco su integridad o su correcta recepción, por lo que FABERGAMES S.L.
>> no asume responsabilidad alguna por tales circunstancias. Si no consintiese
>> en la utilización del correo electrónico o de las comunicaciones vía
>> Internet le rogamos nos lo comunique y ponga en nuestro conocimiento de
>> manera inmediata. Este mensaje va dirigido, de manera exclusiva, a su
>> destinatario y contiene información confidencial y sujeta al secreto
>> profesional, cuya divulgación no está permitida por la ley. En caso de
>> haber recibido este mensaje por error, le rogamos que, de forma inmediata,
>> nos lo comunique mediante correo electrónico remitido a nuestra atención o
>> a través del teléfono (+ 34) 966 26 11 11 y proceda a su eliminación,
>> así como a la de cualquier documento adjunto al mismo. Asimismo, le
>> comunicamos que la distribución, copia o utilización de este mensaje, o de
>> cualquier documento adjunto al mismo, cualquiera que fuera su finalidad,
>> están prohibidas por la ley.
>>
>>
>>
>>
>
>
> --
> Steve Swift
> http://www.swiftys.org.uk
>



-- 

*Antonio Manuel Fernández Pérez*

Ingeniero Técnico Informático

Dpto. Informático Fabergames S.L.

TLF:96626 / FAX:966551801

www.fabergames.com
Fabergames respeta su
privacidad

* * * ADVERTENCIA LEGAL * * *

Le informamos, como destinatario de este mensaje, que el correo electrónico
y las comunicaciones por medio de Internet no permiten asegurar ni
garantizar la confidencialidad de los mensajes transmitidos, así como
tampoco su integridad o su correcta recepción, por lo que FABERGAMES S.L.
no asume responsabilidad alguna por tales circunstancias. Si no consintiese
en la utilización del correo electrónico o de las comunicaciones vía
Internet le rogamos nos lo comunique y ponga en nuestro conocimiento de
manera inmediata. Este mensaje va dirigido, de manera exclusiva, a su
destinatario y contiene información confidencial y sujeta al secreto
profesional, cuya divulgación no está permitida por la ley. En caso de
haber recibido este mensaje por error, le rogamos que, de forma inmediata,
nos lo comunique mediante correo electrónico remitido a nuestra atención o
a través del teléfono (+ 34) 966 26 11 11 y proceda a su eliminación, así
como a la de cualquier documento adjunto al mismo. Asimismo, le comunicamos
que la distribución, copia o utilización de este mensaje, o de cualquier
documento adjunto al mismo, cualquiera que fuera su finalidad, están
prohibidas por la ley.


Re: [users@httpd] Problems with cgi scripts and Apache's log.

2012-03-01 Thread Steve Swift
You could alias /cgi-bin/cbws1084.dll to /sod_off.html

2012/3/1 Antonio Fernández Pérez 

> Hi everybody,
>
> I'm having problems with my Apache. Apache's log of my server is growing a
> lot because somebody tries to execute this file "cgi-bin/cbws1084.dll" that
> doesn't exist. Anybody can tell me if is possible disable this or how can I
> do to solve it?
>
> Thanks.
>
> Best regards,
>
> Toni.
>
> --
>
> *Antonio Manuel Fernández Pérez*
>
> Ingeniero Técnico Informático
>
> Dpto. Informático Fabergames S.L.
>
> TLF:96626 / FAX:966551801
>
> www.fabergames.com
> Fabergames respeta su 
> privacidad
>
> * * * ADVERTENCIA LEGAL * * *
>
> Le informamos, como destinatario de este mensaje, que el correo
> electrónico y las comunicaciones por medio de Internet no permiten asegurar
> ni garantizar la confidencialidad de los mensajes transmitidos, así como
> tampoco su integridad o su correcta recepción, por lo que FABERGAMES S.L.
> no asume responsabilidad alguna por tales circunstancias. Si no consintiese
> en la utilización del correo electrónico o de las comunicaciones vía
> Internet le rogamos nos lo comunique y ponga en nuestro conocimiento de
> manera inmediata. Este mensaje va dirigido, de manera exclusiva, a su
> destinatario y contiene información confidencial y sujeta al secreto
> profesional, cuya divulgación no está permitida por la ley. En caso de
> haber recibido este mensaje por error, le rogamos que, de forma inmediata,
> nos lo comunique mediante correo electrónico remitido a nuestra atención o
> a través del teléfono (+ 34) 966 26 11 11 y proceda a su eliminación, así
> como a la de cualquier documento adjunto al mismo. Asimismo, le comunicamos
> que la distribución, copia o utilización de este mensaje, o de cualquier
> documento adjunto al mismo, cualquiera que fuera su finalidad, están
> prohibidas por la ley.
>
>
>
>


-- 
Steve Swift
http://www.swiftys.org.uk


[users@httpd] Problems with cgi scripts and Apache's log.

2012-03-01 Thread Antonio Fernández Pérez
Hi everybody,

I'm having problems with my Apache. Apache's log of my server is growing a
lot because somebody tries to execute this file "cgi-bin/cbws1084.dll" that
doesn't exist. Anybody can tell me if is possible disable this or how can I
do to solve it?

Thanks.

Best regards,

Toni.

-- 

*Antonio Manuel Fernández Pérez*

Ingeniero Técnico Informático

Dpto. Informático Fabergames S.L.

TLF:96626 / FAX:966551801

www.fabergames.com
Fabergames respeta su
privacidad

* * * ADVERTENCIA LEGAL * * *

Le informamos, como destinatario de este mensaje, que el correo electrónico
y las comunicaciones por medio de Internet no permiten asegurar ni
garantizar la confidencialidad de los mensajes transmitidos, así como
tampoco su integridad o su correcta recepción, por lo que FABERGAMES S.L.
no asume responsabilidad alguna por tales circunstancias. Si no consintiese
en la utilización del correo electrónico o de las comunicaciones vía
Internet le rogamos nos lo comunique y ponga en nuestro conocimiento de
manera inmediata. Este mensaje va dirigido, de manera exclusiva, a su
destinatario y contiene información confidencial y sujeta al secreto
profesional, cuya divulgación no está permitida por la ley. En caso de
haber recibido este mensaje por error, le rogamos que, de forma inmediata,
nos lo comunique mediante correo electrónico remitido a nuestra atención o
a través del teléfono (+ 34) 966 26 11 11 y proceda a su eliminación, así
como a la de cualquier documento adjunto al mismo. Asimismo, le comunicamos
que la distribución, copia o utilización de este mensaje, o de cualquier
documento adjunto al mismo, cualquiera que fuera su finalidad, están
prohibidas por la ley.