Archive for August, 2010
Web-based Honeypot – participate!
0 Comments Published August 25th, 2010 in HoneyPot, Security, spam fighting.I cannot deny that ProjectHoneypot is really cool. It will track automated web bots, collect all the data of the bot that it can, even any POST data that the bot will send in any forms. The project participation involve you to put links to a code, hosted on your site’s server. The link will [...]
I bump into a problem when I need to filter my application to be accessed from certain IP only. So, some googling around, i found s simple code to do this. $targetAddr = “192.168.1..*”; if (ereg($targetAddr, $_SERVER['REMOTE_ADDR'])) { echo “”; } else { die(“Sorry. Not allowed from your IP.”); } This simple script will allow [...]



