* John Hines (Thu, Sep 05, 2002 at 10:31:54PM -0400)

> Hello,
> �
> I'm looking for documentation on how to feed nmap scan results into Nessus.�
> The Nessus FAQ specifies sending the nmap scan to a file, but the Nessus client
> does not read the nmap output file correctly when I specify the nmap output
> file in the Target selection tab.� Does anyone have some documentation I could
> reference?
> �

I wasn't aware that nessus could take an NMAP scan log directly; perhaps
I am wrong.

If I am not wrong, you could grab the "interesting" IP addresses with a
perl snippet, such:

#!/usr/bin/perl
$|=1;
while(<>) {
 if(/interesting ports on/i) {
  if(/\((\S+)\)/) {
   print $1,"\n";
  }
 }
}

Tor
-
[EMAIL PROTECTED]: general discussions about Nessus.
* To unsubscribe, send a mail to [EMAIL PROTECTED] with
"unsubscribe nessus" in the body.

Reply via email to