Subject: | Should default to tcp:22 for ssh service |
Looking at Net/SSH/Perl.pm v 1.113, it might be better to change line 201:
From: $rport = $serv[2];
To: $rport = $serv[2] || 22;
Not all OS's have ssh in the services map and since this is meant to be OS independent it would nice to guess what the user means.