Minggu, 10 Januari 2010

PHP : PORT

ini_set("max_execution_time",120);

$Start = 0;
$Stop = 1024;

$target = "www.yahoo.co.id";

$range =range($Start, $Stop);
echo "

Hasil scan untuk alamat $target

";

foreach ($range as $port) {
$result = @fsockopen($target, $port,$errno,$errstr,1);
if ($result)
echo "

Yang terbuka pada port $port

";
}
?>

Tidak ada komentar: