On Sat, Jun 05, 2004 at 03:20:29PM -0400, Bradley Alexander wrote:

> The scans came out, but I have a question on reporting. I saved off the scans 
> in native format (nbe for Nessus) as well as html with charts and graphs. 
...
> Is there a way 
> to, for instance, get a list of _all_ of the DCOM enabled boxes or _all_ of 
> the boxes allowing a null session?

The NBE format is pretty handy for this.  You can do this with something
like the following:

  awk -F'|' '$7 ~ /NULL session/' results.nbe

to pick up boxes allowing NULL sessions.  Pipe that to another file and
the feed it into nessus to generate a nicer report:

  awk -F'|' '$7 ~ /NULL session/' results.nbe > null-sessions.nbe
  nessus -i null-sessions.nbe -o null-sessions.html

Or, if you only want the hostnames, do this:

  awk -F'|' '$7 ~ /NULL session/ {print $3}' results.nbe | sort | uniq 

Hope this helps,


George
-- 
[EMAIL PROTECTED]

Attachment: pgpDUN6NLGxEo.pgp
Description: PGP signature

_______________________________________________
Nessus mailing list
[EMAIL PROTECTED]
http://mail.nessus.org/mailman/listinfo/nessus

Reply via email to