On Mon, Sep 08, 2003 at 12:12:55PM -0600, jghelle wrote: > Does anyone have or know of a list of Nessus plugins sorted by plugin ID > with the name, family and summary listed?
If you have a working nessus config file, you can generate the list
yourself. For example, assuming you're connecting to the nessus daemon
on your localhost using userid "auser" and password "nopass", run this:
nessus -c ~/.nessusrc -qp localhost 1241 auser nopass | \
awk -F '|' 'BEGIN {OFS="\t"} {print $1, $3, $2, $6}' | \
sort +0n > plugins.out
The list in plugins.out will consist of four tab-separated fields:
plugin id, name, family, and summary. Adjust as you desire.
For those interested in outputing slightly different information, field
order is specified in _cli_dump_plugins() in nessus-core/nessus/cli.c.
George
--
[EMAIL PROTECTED]
pgp00000.pgp
Description: PGP signature
