On Tue, May 17, 2005 at 05:09:31PM -0400, Juan Rodriguez wrote: > How can I generate HTML w/ graphics reports w/o "Security > Notes"? I tried grepping "Security Hole" and "Security > Warning" and saving as new nbe file but although nessus > loads the report it wont generate the HTML graphics one > (it just freezes after I press OK).
I suspect the problem occurs because you're not only removing notes but also the "timestamps" messages from the NBE files. If you're don't mind including open ports in your reports, you could simply do a 'fgrep -v "Security Note"'; otherwise, the following awk script should do the trick: awk -F'|' '$1 == "timestamps" || ($1 == "results" && NF > 4 && $6 != "Security Note")' results.nbe > nonotes.nbe George -- [EMAIL PROTECTED] _______________________________________________ Nessus mailing list [email protected] http://mail.nessus.org/mailman/listinfo/nessus
