странные запросы в логах

Sad Spirit

мизантроп (Старожил PHPClub)
Команда форума
странные запросы в логах

в логах Апача появляется вот такая херня, на которую Апач реагирует ошибкой 414:
Код:
212.127.155.40 - - [13/Jun/2004:22:29:35 +0400] "SEARCH /\x90\x02\xb1\x02\ ... и ещё мно-о-ого этих \xxx
это червяк какой-то что ли?
 

Sad Spirit

мизантроп (Старожил PHPClub)
Команда форума
Понятно, буду из логов выкидывать... Спасибо.
 

catoffsky

Guest
Depending of if you have access and if it does not cause problems with any 'real' page names the following directive is quite helpful. There are plenty of thing that can be stopped by this but the last line worked prefectly for me.

<IfModule mod_rewrite.c>
RedirectMatch permanent (.*)cmd.exe(.*)$ http://www.microsoft.com
RedirectMatch permanent (.*)root.exe(.*)$ http://www.microsoft.com
RedirectMatch permanent (.*)\/_vti_bin\/(.*)$ http://www.microsoft.com
RedirectMatch permanent (.*)\/scripts\/\.\.(.*)$ http://www.microsoft.com
RedirectMatch permanent (.*)\/_mem_bin\/(.*)$ http://www.microsoft.com
RedirectMatch permanent (.*)\/msadc\/(.*)$ http://www.microsoft.com
RedirectMatch permanent (.*)\/MSADC\/(.*)$ http://www.microsoft.com
RedirectMatch permanent (.*)\/c\/winnt\/(.*)$ http://www.microsoft.com
RedirectMatch permanent (.*)\/d\/winnt\/(.*)$ http://www.microsoft.com
RedirectMatch permanent (.*)\/x90\/(.*)$ http://www.microsoft.com
</IfModule>
:)))
 
Сверху