In this section, we review the pynexpose module for interacting with the Nexpose Vulnerabilities scanner.
Accessing the Nexpose API with Python
Installing the pynexpose Python Module
Nexpose has an API that allows us to access its functionalities from external applications, in such a way that it enables the automation of the tasks that a user must carry out from the administration interface or from the nexpose console. The API allows any routine code to interact with a nexpose instance using HTTPS invocations to return functions in XML format. It is important to use the HTTPS protocol, not only for security reasons, but also because the API does not support calls using HTTP.
In Python, we have the Pynexpose module, whose code...