Heh!

http://72.14.205.104/search?q=cache:...k &cd=1&gl=us

If you got friends too, you might want to add something like this to your .htaccess file:

Code:
# Check for worms, exploits, et cetera and redirect them to a PHANTOM site.
# Variant-1 May cause problems with CRON jobs set from cPanel.
RewriteCond %{HTTP_USER_AGENT} ^LWP                                 [NC,OR]
# Variant-2 No reported problems.
RewriteCond %{REQUEST_URI} ^visualcoders                            [NC,OR]
# Variant-3 No reported problems.
RewriteCond %{QUERY_STRING} rush=([^&]+)                            [NC,OR]
# Variant-4 May cause problems with cPanel updates, et cetera.
RewriteCond %{QUERY_STRING} ^(.*)wget(.*)                           [NC,OR]
# Variant-5 Redirect all inner http:// requests.
RewriteCond %{QUERY_STRING} ^(.*)http://(.*)                        [NC,OR]
# Variant-6 Redirect all inner http requests even if encoded.
RewriteCond %{QUERY_STRING} ^(.*)http%3A%2F%2F(.*)                  [NC,OR]
# Variant-7 Prevent access from santy webworm a-e.
RewriteCond %{QUERY_STRING} ^(.*)highlight=\%2527                   [NC,OR]
# Variant-8 Prevent pre php 4.3.10 bug.
RewriteCond %{HTTP_COOKIE}% s:(.*):\%22test1\%22\%3b                [NC,OR]
# Variant-9 Check for AWStats exploits.
RewriteCond %{QUERY_STRING} ^(.*)configdir(.*)                      [NC,OR]
# Variant-10 Experimental...
RewriteCond %{REQUEST_URI} ^mkey                                    [NC,OR]
# Variant-11 Block attempts to set a mosConfig value.
RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D)       [NC,OR]
# Variant-12 Block base64_encode crap.
RewriteCond %{QUERY_STRING} base64_encode.*\(.*\)                   [NC,OR]
# Variant-13 Block scripts that includes a <script> tag.
RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E)              [NC,OR]
# Variant-14 Block attempts to set PHP GLOBALS variable.
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2})           [NC,OR]
# Variant-15 Block attempts to modify a _REQUEST variable.
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})          [NC]
# Send all blocked request to PHANTOM site!
RewriteRule ^(.*)$ http://www.go-away-and-dont-come-back-again.com  [L]