On Mar 3, 2008, at 10:34 PM, Mike Gilligan wrote:

Hi. Does Nessus keep a record of links spidered during a scan for future reference? I'd like to feed the links into a Web Application Scanner.


Hi Mike,

You can get the list of pages that Nessus visited with the following script :


list = get_kb_item("www/80/content/extensions/*");
if ( isnull(list) ) exit(0);
list = make_list(list);

foreach page (list)
{
 display(page, "\n");
}


To run this script in command-line for host X.Y.Z.T (after a scan) you'd do :

/opt/nessus/bin/nasl -k /opt/nessus/var/nessus/users/YOU/kbs/X/Y/Z/ X.Y.Z.T TheScript.nasl




Thanks,


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

Reply via email to