/ Published in: PHP
Enter any suspicious IP address that you wanted to check into the form field and press the "LOOKUP" button
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<html> <head> <title>DNSBL Lookup Tool - IP Blacklist Check Script</title> </head> <body> <form action="" method="get"> <input type="text" value="" name="ip" /> <input type="submit" value="LOOKUP" /> </form> <?php /*************************************************************************************** This is a simple PHP script to lookup for blacklisted IP against multiple DNSBLs at once. You are free to use the script, modify it, and/or redistribute the files as you wish. Homepage: http://dnsbllookup.com ****************************************************************************************/ function dnsbllookup($ip){ $dnsbl_lookup=array("dnsbl-1.uceprotect.net","dnsbl-2.uceprotect.net","dnsbl-3.uceprotect.net","dnsbl.dronebl.org","dnsbl.sorbs.net","zen.spamhaus.org"); // Add your preferred list of DNSBL's if($ip){ foreach($dnsbl_lookup as $host){ $listed.=$reverse_ip.'.'.$host.' <font color="red">Listed</font><br />'; } } } if($listed){ echo $listed; }else{ echo '"A" record was not found'; } } $ip=$_GET['ip']; echo dnsbllookup($ip); }else{ echo "Please enter a valid IP"; } } ?> </body> </html>
URL: https://sourceforge.net/projects/dnsbllookup/