nessrest
nessrest copied to clipboard
A python library for using the new Nessus REST API.
I know its simple enough, but right now its a bit of a work around. With the API as its built right now, I dont have the ability to download...
Using mod: from nessrest import ness6rest Objective: download a scan to a pdf, html or csv I could not find the nessrest function to do this, so I use the...
I'm trying to use this library in least-privilege environment where the external app needs read permissions but does not and should not be able to modify anything upstream. Even testing...
Trying to use scan_details to try to pull the UUIDs of already existing scans. However, I pull nothing. Since I don't get an error from incorrect name (which I did...
I'd like to be able to pull down reports in various formats. This would use the Nessus.scans export, export-status, and download methods for Nessus 6, and export to wherever I...
Hello, I think that this repo can be much better if you guys add some coding conventions. It will be much more clearer than current. PEP8, for example. Can I...
On debian/ubuntu, `/etc/ssl/certs` is a well known location where the systemwide ca bundle resides. 1. Should nessus use the default CA store? 2. Or should the user always explicitly supply...
Added additional SSH arguments for up to 4 total SSH user/pass combos. Adjusted the get_cred section for SSH user/pass credentials so that it checks the index (like it currently does...
See http://stackoverflow.com/questions/16333054/what-are-the-implications-of-registering-an-instance-method-with-atexit-in-pytho You're using atexit here to log out, https://github.com/tenable/nessrest/blob/master/nessrest/ness6rest.py#L113 However, this prevents the Scanner object from ever going through garbage collection. That means in a long-running app, it'll stick...