1
0
mirror of https://github.com/tennc/webshell.git synced 2025-12-31 20:09:04 +00:00
Files
webshell/caidao-shell/caidao-plug/扫描端口_php.ccc
2014-11-04 11:29:23 +08:00

17 lines
197 B
Plaintext

for ($i=1; $i<255; $i++)
{
$strHost = "192.168.1.{$i}";
$fp = @fsockopen($strHost, 80, $errno, $errstr, 1);
if (!$fp)
{
print "{$i}.{$errstr}\n";
}
else
{
print "{$i}.open\n";
}
fclose($fp);
}