TShopping

標題: port_scanner.php [打印本頁]

作者: woff    時間: 2022-4-4 23:15
標題: port_scanner.php
  1. <?php
  2. ini_set('max_execution_time', 0);
  3. ini_set('memory_limit', -1);

  4. $host = 'google.com';
  5. $ports = array(21, 25, 80, 81, 110, 143, 443, 587, 2525, 3306);

  6. foreach ($ports as $port){
  7.     $connection = @fsockopen($host, $port, $errno, $errstr, 2);
  8.     if (is_resource($connection)){
  9.         echo '<h2>' . $host . ':' . $port . ' ' . '(' . getservbyport($port, 'tcp') . ') is open.</h2>' . "\n";
  10.         fclose($connection);
  11.     } else{
  12.         echo '<h2>' . $host . ':' . $port . ' is not responding.</h2>' . "\n";
  13.     }
  14. }
複製代碼

文章出處
https://gist.github.com/akalongman/b50bc11a9303adb6f2db





歡迎光臨 TShopping (http://www.tshopping.com.tw/) Powered by Discuz! X3.2