FAQ

How can I protect my site against Netdisaster attacks?

Netdisaster is only meant for fun! Just as with any other kind of jokes, users should take care not hurting each other. As you can guess, I cannot control the way people use Netdisaster.

If someone made an attack against your site, and made it public, then he's responsible for this link, and should remove it if you ask him to.

However, if you really don't like the idea that people can attack your site using Netdisaster, or if someone made an attack public and you cannot have the link removed, all you need is block netdisaster.com as a referrer, on your server.

Here is an example of .htacces syntax to block Netdisaster as a referrer:

SetEnvIfNoCase Referer "^http://www.netdisaster.com/" BadReferrer
order deny,allow
deny from env=BadReferrer

This is very simple:
- if you haven't a .htaccess file yet, create en empty text file and name it ".htaccess".
- copy and paste the above code into the .htaccess file
- upload it to your server, at the root of your site

If the .htaccess method cannot be used, or seems to complicated, you can easily add a simple line of javascript to the page you want to protect against Netdisaster attacks:

This method is not as accurate as the first one but should work in most cases.

Otherwise, write to the webmaster to request that your site's URL be filtered (access denied by Netdisaster itself).