1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
Source: python-libnmap
Section: python
Priority: optional
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders: Samuel Henrique <samueloph@debian.org>
Build-Depends: debhelper-compat (= 13), dh-python, python3-all, python3-setuptools
Standards-Version: 4.5.1
Rules-Requires-Root: no
Homepage: https://pypi.python.org/pypi/python-libnmap
Vcs-Browser: https://salsa.debian.org/python-team/packages/python-libnmap
Vcs-Git: https://salsa.debian.org/python-team/packages/python-libnmap.git
Testsuite: autopkgtest-pkg-python
Package: python3-libnmap
Architecture: all
Depends: ${python3:Depends}, ${misc:Depends}, nmap
Suggests: python-libnmap-doc, python3-pymongo, python3-sqlalchemy, python3-boto3
Description: Python 3 NMAP library
This package contains a Python library enabling Python developers to
manipulate nmap process and data:
* automate or schedule nmap scans on a regular basis
* manipulate nmap scans results to do reporting
* compare and diff nmap scans to generate graphs
* batch process scan reports
* ...
The lib 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: insert/get/getAll/delete
* sqlalchemy: insert/get/getAll/delete
* aws s3: insert/get/getAll/delete (not supported for Python3 since boto
is not supporting py3)
.
This package installs the library for Python 3.
Package: python-libnmap-doc
Architecture: all
Section: doc
Depends: ${sphinxdoc:Depends}, ${misc:Depends}
Multi-Arch: foreign
Description: Python NMAP Library (common documentation)
This package contains a Python library enabling Python developers to
manipulate nmap process and data:
* automate or schedule nmap scans on a regular basis
* manipulate nmap scans results to do reporting
* compare and diff nmap scans to generate graphs
* batch process scan reports
* ...
The lib 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: insert/get/getAll/delete
* sqlalchemy: insert/get/getAll/delete
* aws s3: insert/get/getAll/delete (not supported for Python3 since boto
is not supporting py3)
.
This is the common documentation package.
|