On Wed, 15 Mar 2006, Ron Backman wrote:

When scanning both Nessus 2.2.x and 3.0x with a Target host file of IP's, the Nessus client can export ONE .html doc. That is great to get an overall view of host vulnerabilities. But my network has about 500 hosts and I would like to export, as an option, these .html reports separately, namely one report per IP address. The resultant .html report of 500 hosts is several mb's in size and I don't really want to e-mail it out to 50 or so sysadmins. I would much rather send out individual reports. Any ideas?

Save the scan output to NBE format. Use your scripting language of
choice to create fifty or so reports based on IP. Here's how I would do
it in Bash (where 10.0.0.1 is an example of an IP I want a seperate
report for):

grep 10.0.0.1 YourOutputFile.nbe >> 10.0.0.1_Report.nbe
nessus -i 10.0.0.1_Report.nbe -o 10.0.0.1_Report.html

--
 - Josh
_______________________________________________
Nessus mailing list
[email protected]
http://mail.nessus.org/mailman/listinfo/nessus

Reply via email to