Skip to main content

Python3 bindings and CLI tools for Nexpose API version 3

Project description

Python3 bindings and CLI tools for the Nexpose API version 3

cli programs

nsc-exporter

A Prometheus https://prometheus.io/ exporter for Nexpose scan console metrics.

A systemd service file is provided in extras.

nsc-remove-old-reports

nsc-remove-old-sites

library usage

Basic usage:

import nexpose.nexpose as nexpose

login = nexpose.login(
    base_url='https://localhost:3780',
    user='some_nexpose_user',
    password='secure_nexpose_password',
)

nexpose.engines(nlogin=login)

For argument parsing:

parser = nexposeargs.parser
parser.description = "My nexpose script"
parser.add_argument(
    "-f",
    "--foo",
    help="foo argument",
    action="store",
)

args = parser.parse_args()

base_url = ':'.join([args.baseurl, args.port])

login = nexpose.login(
    base_url=base_url,
    user=args.user,
    password=args.password,
    verify=args.verify,
)

alternatives

nexpose is the official python binding for Nexpose API versions 1.1 and 1.2

nexpose-rest is unofficial. It is auto-generated and thus far more comprehensive than nexpose-py.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nexpose-py-0.0.4.tar.gz (7.7 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page