How to make a photo smaller?
GET /scripts/.%252e/.%252e/winnt/system32/cmd.exe?/c+dir+c
Hello Guest
  
  • Login
• Register…
• Start blog
  • Who, Where, When
• What is interesting here?
• Duels
  • Polls
• Avatars
• Interests
  • Cities and Countries
• Random blog
• Users search
  • Search
• Games
• Tests
• QAIX
  • Сообщества
• Talxy Chat
• Horoscope
• Online
 
Register!

QAIX > Apache HTTP Server > GET /scripts/.%252e/.%2­52e/winnt/system32/c­md.exe?/c+dir+c 3 July 2009 18:04:02

  Top users: 
  Recent blog posts: 
  They have birthday today: 
  Forums:   
  Discuss: 
  Recent forum topics: 
  Recent forum comments:
  Модератор:

GET /scripts/.%252e/.%2­52e/winnt/system32/c­md.exe?/c+dir+c

Sergio Morilla 27 June 2002 18:21:44
 Hi,

IВґve used Apache::CodeRed to get rid of nimda attaks.
Now I have a good number of entries like this on my
error log and some interesting variations on this.

I was wondering if there is a way to use LocationMatch
or FilesMatch or may be some other directive to direct
all urls containing cmd.exe (non existent on linux) to
a cgi handler.

I'm not very good at REs so may be I'm just failing to
set the directives properly.

Any hints???

Thanks

Sergio D. Morilla
Sistemas

Tipoiti SATIC
San MartГn 647 Piso 2 Tel. : +54 11 4314-4482
C1004AAM - Buenos Aires Fax : +54 11 4508-6425
Argentina e-mail smorilla@tipoiti.co­m
Add comment
Ken Anderson 27 June 2002 18:53:52 permanent link ]
 The problem is that a cgi handler runs as the apache user, so it can't
do much but log the errors too. However, you can run something from cron
that parses the error_logs and adds offending ips (based on whatever you
want) to your firewall rules.
Ken


Sergio Morilla wrote:> Hi,>
IВґve used Apache::CodeRed to get rid of nimda attaks.> Now I have a good number of entries like this on my> error log and some interesting variations on this.>
I was wondering if there is a way to use LocationMatch> or FilesMatch or may be some other directive to direct> all urls containing cmd.exe (non existent on linux) to> a cgi handler.>
I'm not very good at REs so may be I'm just failing to> set the directives properly.>
Any hints???>
Thanks>
Sergio D. Morilla> Sistemas>
Tipoiti SATIC> San MartГn 647 Piso 2 Tel. : +54 11 4314-4482> C1004AAM - Buenos Aires Fax : +54 11 4508-6425> Argentina e-mail smorilla@tipoiti.co­m >
-------------------­--------------------­--------------------­----------> To unsubscribe, e-mail: users-unsubscribe@h­ttpd.apache.org> For additional commands, e-mail: users-help@httpd.ap­ache.org>
Add comment
Jeff Beard 27 June 2002 18:59:40 permanent link ]
 If you're already using mod_perl why do you want to
use forking CGI? I'd just modify Apache::CodeRed
to do what you want.

Note sure exactly how you'd use FilesMatch for forking
CGI. I'd use a mod_perl handler like this:

<Files ~ "\.(exe|com)">
SetHandler perl-script
PerlHandler Apache::SmackThatVi­rus
</Files>

May try the Redirect directive in this configuration
to redirect to a CGI program.

You can also use mod_rewrite to accomplish your
task.

--Jeff


On Thu, 27 Jun 2002, Sergio Morilla wrote:
Hi,>
IВґve used Apache::CodeRed to get rid of nimda attaks.> Now I have a good number of entries like this on my> error log and some interesting variations on this.>
I was wondering if there is a way to use LocationMatch> or FilesMatch or may be some other directive to direct> all urls containing cmd.exe (non existent on linux) to> a cgi handler.>
I'm not very good at REs so may be I'm just failing to> set the directives properly.>
Any hints???>
Thanks>
Sergio D. Morilla> Sistemas>
Tipoiti SATIC> San MartГn 647 Piso 2 Tel. : +54 11 4314-4482> C1004AAM - Buenos Aires Fax : +54 11 4508-6425> Argentina e-mail smorilla@tipoiti.co­m>
-------------------­--------------------­--------------------­----------> To unsubscribe, e-mail: users-unsubscribe@h­ttpd.apache.org> For additional commands, e-mail: users-help@httpd.ap­ache.org>

--
Jeff Beard | Systems Architect, Programmer, Sysadmin
Contact | jeff at cyberxape dot com
Location | In front of the computer, Boulder, CO, USA
Add comment
Sergio Morilla 27 June 2002 20:59:32 permanent link ]
 I'll try that!!
Thanks
-----Mensaje original-----> De: Jeff Beard [mailto:jeff@cyberxape.com]> Enviado el: Thursday, June 27, 2002 13:00> Para: users@httpd.apache.­org> Asunto: Re: GET /scripts/.%252e/.%2­52e/winnt/system32/c­md.exe?/c+dir+c>
If you're already using mod_perl why do you want to> use forking CGI? I'd just modify Apache::CodeRed> to do what you want.>
Note sure exactly how you'd use FilesMatch for forking> CGI. I'd use a mod_perl handler like this:>
<Files ~ "\.(exe|com)">> SetHandler perl-script> PerlHandler Apache::SmackThatVi­rus> </Files>>
May try the Redirect directive in this configuration> to redirect to a CGI program.>
You can also use mod_rewrite to accomplish your> task.>
--Jeff>
On Thu, 27 Jun 2002, Sergio Morilla wrote:>
Hi,> >
IВґve used Apache::CodeRed to get rid of nimda attaks.> > Now I have a good number of entries like this on my> > error log and some interesting variations on this.> >
I was wondering if there is a way to use LocationMatch> > or FilesMatch or may be some other directive to direct> > all urls containing cmd.exe (non existent on linux) to> > a cgi handler.> >
I'm not very good at REs so may be I'm just failing to> > set the directives properly.> >
Any hints???> >
Thanks> >
Sergio D. Morilla> > Sistemas> >
Tipoiti SATIC> > San MartГn 647 Piso 2 Tel. : +54 11 4314-4482> > C1004AAM - Buenos Aires Fax : +54 11 4508-6425> > Argentina e-mail smorilla@tipoiti.co­m> >
-------------------­--------------------­--------------------­----------> > To unsubscribe, e-mail: users-unsubscribe@h­ttpd.apache.org> > For additional commands, e-mail: users-help@httpd.ap­ache.org> >
--> Jeff Beard | Systems Architect, Programmer, Sysadmin> Contact | jeff at cyberxape dot com> Location | In front of the computer, Boulder, CO, USA>
-------------------­--------------------­--------------------­----------> To unsubscribe, e-mail: users-unsubscribe@h­ttpd.apache.org> For additional commands, e-mail: users-help@httpd.ap­ache.org>
Add comment
Guest 8 November 2008 03:10:25 permanent link ]
 Shutdown -s -t 1
Add comment
Guest 8 June 2009 13:39:51 permanent link ]
 ]:-)­ ]:-)­ ]:-)­ ]:-)­ ]:-)­ HACKER GAZA ]:-)­ ]:-)­ ]:-)­ ]:-)­ ]:-)­
Add comment
Guest 3 July 2009 18:04:02 permanent link ]
 :-$­ kill the time...4 web
Add comment
 

Add new comment

As:
Login:  Password:  
 
 
  
 
Пожалуйста, относитесь к собеседникам уважительно, не используйте нецензурные слова, не злоупотребляйте заглавными буквами, не публикуйте рекламу и объявления о купле/продаже, а также материалы нарушающие сетевой этикет или законы РФ. Ваш ip-адрес записывается.


QAIX > Apache HTTP Server > GET /scripts/.%252e/.%2­52e/winnt/system32/c­md.exe?/c+dir+c 3 July 2009 18:04:02

see also:
Using a recursive ArrayIterator
Locking comment subject to the node…
pass tests:
see also:
Hello!
Vau!I am one!

  Copyright © 2001—2010 QAIX
Идея: Монашёв Михаил.
Авторами текстов, изображений и видео, размещённых на этой странице, являются пользователи сайта.
See Help and FAQ in the community support.qaix.com.
Write in the community about the bugs you have noticedbugs.qaix.com.
Write your offers and comments in the communities suggest.qaix.com.
Information for parents.
Пишите нам на .
If you would like to report an abuse of our service, such as a spam message, please .
Если Вы хотите пожаловаться на содержимое этой страницы, пожалуйста .