Home : Gossamer Threads Inc. : Discussion :

Gossamer Threads Inc.: Discussion: Re: [QooQ] New Virus?: Edit Log

Here is the list of edits for this post
Re: [QooQ] New Virus?
Hi,

Gossamer should be back to full capacity right now. We replaced a hard drive, and everything seems to be going well. Let me know how you find it.

As for the redirect, you can use mod_rewrite to rewrite any request containing root.exe or default.ida to another site. Here's a sample:

Code:
# trap CodeRed and send them away!
<Location /default.ida>
RewriteEngine On
RewriteRule /default.ida http://www.microsoft.com/ [L]
</Location>
# trap exploits of code-red compromized systems.
<Files "*.exe">
RewriteEngine On
RewriteRule . http://www.microsoft.com/ [L]
</Files>
You may need to tweak the .exe if you actually have .exe files on your site. =)

Cheers,

Alex
--
Gossamer Threads Inc.

Last edited by:

Alex: Sep 21, 2001, 1:15 AM

Edit Log: