On Wed, Oct 22, 2003 at 03:15:25PM -0400, Vaccare, Anthony wrote: > I have a related question, probably a novice question, much like my > Nessus skills. I have performed a scan of an entire subnet, and > naturally have the results for every IP address in the subnet. However, > I would like to print a report for only a select few hosts. Is there a > way of doing this?
Only extract 192.168.0.1 : grep '192\.168\.0\.1' report.nbe > report-just-for-one-ip.nbe Or 192.168.0.1 - 192.168.0.255 : grep '192\.168\.0\.[0-9]*' report.nbe > report-classc.nbe Then convert the result to html : nessus -i report-classc.nbe -o report-classc.html
