Skip to content

Latest commit

 

History

History
44 lines (32 loc) · 1.31 KB

File metadata and controls

44 lines (32 loc) · 1.31 KB

Welcome to libnmap's documentation!

About libnmap

libnmap is a python toolkit for manipulating nmap. It currently offers the following modules:

  • process: enables you to launch nmap scans
  • parse: enables you to parse nmap reports or scan results (only XML so far) from a file, a string,...
  • report: enables you to manipulate a parsed scan result and de/serialize scan results in a json format
  • diff: enables you to see what changed between two scans
  • common: contains basic nmap objects like NmapHost and NmapService. It is to note that each object can be "diff()ed" with another similar object.
  • plugins: enables you to support datastores for your scan results directly in the "NmapReport" object from report module
    • mongodb: only plugin implemented so far, ultra basic, for POC purpose only
    • couchdb: todo
    • sqlalchemy: todo
    • elastic search: todo
    • csv: todo

libnmap's modules

The full source code is available on GitHub. Please, do not hesitate to fork it and issue pull requests.

The different modules are documented below:

.. toctree::
   :maxdepth: 2
   :glob:

   process
   parser
   objects
   diff

Indices and tables