时间:2021-07-01 10:21:17 帮助过:50人阅读
代码:
//Codz by angel
$youip=$HTTP_SERVER_VARS["REMOTE_ADDR"]; // 获取本机IP地址
$remoteip=$HTTP_POST_VARS['remoteip']; // 获取表单提交的IP地址
?>
点击这里返回");
}
// 定义提交错误IP的提示信息
$ips=explode(".",$remoteip);
// 用.分割IP地址
if (intval($ips[0])<1 or intval($ips[0])>255 or intval($ips[3])<1 or intval($ips[3]>255)) err();
// 如果第一段和最后一段IP的数字小于1或者大于255,则提示出错
if (intval($ips[1])<0 or intval($ips[1])>255 or intval($ips[2])<0 or intval($ips[2]>255)) err();
// 如果第二段和第三段IP的数字小于0或者大于255,则提示出错
$closed='此端口目前处于关闭状态。';
$opened='此端口目前处于打开状态!';
$close="关闭";
$open="打开";
$port=array(21,23,25,79,80,110,135,137,138,139,143,443,445,1433,3306,3389);
$msg=array(
'Ftp',
'Telnet',
'Smtp',
'Finger',
'Http',
'Pop3',
'Location Service',
'Netbios-NS',
'Netbios-DGM',
'Netbios-SSN',
'IMAP',
'Https',
'Microsoft-DS',
'MSSQL',
'MYSQL',
'Terminal Services'
);
// 通过IP格式的检查后用数组定义各端口对应的服务名称及状态
echo "
您扫描的IP: color=red>".$remoteip." | n";
端口 | n";服务 | n";检测结果 | n";描述 | n";
".$port[$i]." | ".$msg[$i]." | align=center>".$close." | ".$closed." |
".$port[$i]." | ".$msg[$i]." | align=center>".$open." | ".$opened." |
n"; echo "继续扫描>>> | n";
Copyright © 2004 Security Angel Team[S4T] All Rights Reserved. | n";
您的IP:".$youip." | n";
Copyright © 2004 Security Angel Team[S4T] All Rights Reserved. |