It looks like you're new here. If you want to get involved, click one of these buttons!
This is simple perl banner grabber for port 80 i made, its really just the basic stuff, but it can be modified ( i can do banner grabber for more services and mass one too, if you want, just let me know :))
#!/usr/bin/perl -w
use strict;
use LWP;
my $url = \"http://www.\".$ARGV[0];
my $browser = LWP::UserAgent->new->get($url);
print $url.\" \".$browser->header(\"Server\"), \"\n\";