xml-output added, .gitignore and README.md updated
Ursprung
8471e639be
Commit
281f4cb769
@ -1,17 +1,25 @@
|
|||||||
# Anmap - Automatic nmap Scanner
|
# Anmap - Automatic nmap Scanner
|
||||||
|
|
||||||
|
Prerequisites:
|
||||||
|
* Python 3.6 (https://www.python.org/downloads/)
|
||||||
|
* python-nmap (https://xael.org/pages/python-nmap-en.html)
|
||||||
|
* nmap (https://nmap.org/)
|
||||||
|
|
||||||
```
|
```
|
||||||
usage: anmap.py [-h] [-u U] [-v] HOST
|
usage: anmap.py [-h] [-u UDP] [-v] [-d] [-o] HOST
|
||||||
|
|
||||||
This script automates nmap scans by quickly scanning all TCP ports first and
|
This script automates nmap scans by quickly scanning all TCP ports first and
|
||||||
executing a thorough scan on all ports found open afterwards. Additionally it
|
executing a thorough scan on all ports found open afterwards. Additionally it
|
||||||
scans a given number of most used UDP ports.
|
scans a given number of most used UDP ports.
|
||||||
|
|
||||||
positional arguments:
|
positional arguments:
|
||||||
HOST The hosts to scan (Same notations as in nmap possible)
|
HOST The hosts to scan (Same notations as in nmap possible)
|
||||||
|
|
||||||
optional arguments:
|
optional arguments:
|
||||||
-h, --help show this help message and exit
|
-h, --help show this help message and exit
|
||||||
-u U The number of UDP ports to scan (Default 1000)
|
-u UDP, --udp UDP The number of UDP ports to scan (Default 1000)
|
||||||
-v This enables verbose output
|
-v, --verbose This enables verbose output
|
||||||
|
-d, --debug Sets flags -v and -u 100 and scans only the first 1000
|
||||||
|
tcp ports
|
||||||
|
-o, --output Enables saving of output files
|
||||||
```
|
```
|
Laden…
In neuem Issue referenzieren