RE: Opening all ports on a Windows NT system

2002-10-04 Thread Stephen Mayes
2002 12:22 To: 'Jeff Urlwin'; Jones, Benny; [EMAIL PROTECTED] Subject:RE: Opening all ports on a Windows NT system I *will* be using nmap on the remote system. I want to prove that the firewall doesn't leak. Thanks, Benny

Re: Opening all ports on a Windows NT system

2002-10-04 Thread intertwingled
At 06:55 AM 10/2/02 -0400, you wrote: I need the smallest perl snippet that will open (or attempt to open) ALL 65535 tcp ports on a Windows NT system. I'd like to use it with slight variation to open all UDP ports too. I'm testing a personal firewall, and will be looking at this system from a

RE: Opening all ports on a Windows NT system

2002-10-02 Thread Olivier . Gerault
He is a Quick'n dirty script that scan all desired ports. It works but it is really slow (1 second per port). -- #!perl -w use IO::Socket; use Net::Ping; use strict; my ($portNumber, $remote, $pingObject); my $maxSocket = 20; my $startPort = 130; my $endPort = 140; my $remoteSys =