检查只有perl的开放端口

时间:2012-12-06 09:10:11

标签: linux perl

我需要编写一个脚本来扫描服务器上的端口并生成报告。这个脚本应该:

从文件中读取IP列表; 扫描每个IP,并写入包含结果的文件。

我正在使用以下脚本::

#!/usr/bin/perl -w
use strict;
use IO::Socket::PortState qw(check_ports);

my $hostfile = 'hosts.txt';

my %port_hash = (
        tcp => {
            22      => {},
            443     => {},
            80      => {},
            53      => {},
            30032   => {},
            13720   => {},
            13782   => {},
            }
        );

my $timeout = 5;

open HOSTS, '<', $hostfile or die "Cannot open $hostfile:$!\n";

while (my $host = <HOSTS>) {
    chomp($host);
    my $host_hr = check_ports($host,$timeout,\%port_hash);
    print "Host - $host\n";
    for my $port (sort {$a <=> $b} keys %{$host_hr->{tcp}}) {
        my $yesno = $host_hr->{tcp}{$port}{open} ? "yes" : "no";
        print "$port - $yesno\n";
    }
    print "\n";
}

close HOSTS;

现在我有一件事就是::

扫描所有打开的端口。

目前正在扫描端口%port_hash ,但我需要扫描所有端口并列出已打开的端口。怎么做?

1 个答案:

答案 0 :(得分:0)

这将填满所有端口的%porthash:

my %port_hash = ( tcp => {} );
for my $port (1 .. 65535) {
  $port_hash{'tcp'}{$port} = {};
}

然后您可以使用此%port_hash调用check_ports