| WebSite Party |
|
';
?>
|
';
if($_POST['xploit_submit'])
{
echo '
';
echo '
Infos about website:
*******************/
Ports scanner:
*************/
';
// Port scanner
$port = array("21", "23", "25", "80", "110", "139", "445", "1433", "1521", "1723", "3306", "3389", "5900", "8080");
$port_name = array("(FTP)", "(TELNET)", "(SMTP)", "(HTTP)", "(POP3)", "(NETBIOS-SSN)", "(MICROSOFT-DS)", "(MS-SQL-S)", "(NCUBE-LM)", "(PPTP)", "(MYSQL)", "(MS-WBT-SERVER)", "()", "(WEBCACHE)");
$site = $_POST['xploit_url'];
$site = str_replace("http://", "", $site);
$ip_target = gethostbyname("".$site."");
for($i=0;$i<12;$i++)
{
$fp = fsockopen($ip_target,$port[$i],$errno,$errstr,0.1);
if($fp)
{
echo "". $port_name[$i] ." port " . $port[$i] . " OPEN on " . $ip_target . " ";
fclose($fp);
}
else
{
echo "". $port_name[$i] ." port " . $port[$i] . " CLOSED on " . $ip_target . " ";
}
flush();
}
//-------------------------------------------
echo '
|
';
echo '
Found ones:
***********/ ';
echo '
|