Block Spam, Preventing URL Injection And Block HTTP Attacks With mod_dnsblacklist
Block Spam, Preventing URL Injection And Block HTTP Attacks With mod_dnsblacklistmod_dnsblacklist is a Lighttpd module that use DNSBL in order to block spam relay via web forms, preventing URL injection, block http DDoS attacks from bots and generally protecting your web service denying access to a known bad IP address. Official site: To install it you must download the source code and compile by running these commands: make mod_dnsblacklist.o gcc -shared -o mod_dnsblacklist.so mod_dnsblacklist.o /usr/bin/install -c mod_dnsblacklist.so /usr/local/lib/mod_dnsblacklist.so The module accepts these directives: dnsblacklist.method The HTTP method on which the module acts dnsblacklist.host The address of the DNSBL used dnsblacklist.message Error message displayed to the blocked user Once installed you will need to enable it editing the Lighttpd's configuration (/etc/lighttpd/lighttpd.conf). Here's an example: server.modules = ( Finally you must restart the server /etc/init.d/lighttpd restart The default configuration will protect you from attacks performed with the POST method such spam relay via web forms and on your blog. To extend the protection and preventing URL injection put this in the configuration of Lighttpd: dnsblacklist.method "GET,POST" In order to change the error message shown to blocked users, you can use the directive "dnsblacklist.message" in this way: dnsblacklist.message "Your custom message" ...and now fly light ;)
|



Recent comments
20 hours 23 min ago
1 day 7 hours ago
1 day 13 hours ago
2 days 7 hours ago
2 days 9 hours ago
2 days 9 hours ago
2 days 13 hours ago
2 days 14 hours ago
3 days 5 hours ago
3 days 6 hours ago