mirror of
https://github.com/edu4rdshl/unimap.git
synced 2026-07-18 07:34:50 +00:00
113 lines
3.9 KiB
YAML
113 lines
3.9 KiB
YAML
name: Unimap
|
|
author: Eduard Tolosa <edu4rdshl@protonmail.com>
|
|
settings:
|
|
- ArgRequiredElseHelp
|
|
- StrictUtf8
|
|
about: Scan only once by IP address and reduce scan times with Nmap for large amounts of data.
|
|
args:
|
|
- target:
|
|
short: t
|
|
long: target
|
|
help: Target host.
|
|
takes_value: true
|
|
multiple: false
|
|
conflicts_with:
|
|
- files
|
|
- stdin
|
|
|
|
- files:
|
|
short: f
|
|
long: file
|
|
help: Use a list of targets writen in a file as input.
|
|
takes_value: true
|
|
multiple: true
|
|
conflicts_with:
|
|
- target
|
|
- stdin
|
|
|
|
- output:
|
|
short: o
|
|
long: output
|
|
help: Write to an output file. The name of the output file will be unimap-log-date.
|
|
takes_value: false
|
|
|
|
- unique-output:
|
|
short: u
|
|
long: unique-output
|
|
help: Write the output in CSV format to the specified filename.
|
|
takes_value: true
|
|
multiple: false
|
|
conflicts_with:
|
|
- output
|
|
|
|
- quiet:
|
|
short: q
|
|
long: quiet
|
|
help: Remove informative messages.
|
|
takes_value: false
|
|
|
|
- threads:
|
|
help: Number of threads to use to perform the resolution.
|
|
long: threads
|
|
takes_value: true
|
|
|
|
- custom-resolvers:
|
|
help: Path to a file (or files) containing a list of DNS IP address. If no specified then 1.6k of built-in valid DNS servers from public-dns.info are used.
|
|
long: resolvers
|
|
takes_value: true
|
|
multiple: true
|
|
|
|
- ports:
|
|
help: 'Ports to scan. You can specify a range of ports, a list, or both. Put them inside double quotes, for example: "22, 80, 443, 1000-5000"'
|
|
long: ports
|
|
takes_value: true
|
|
multiple: false
|
|
|
|
- min-rate:
|
|
help: Nmap --min-rate value for ports scan.
|
|
long: min-rate
|
|
takes_value: true
|
|
|
|
- fast-scan:
|
|
help: Use fast scanning for ports (no version detection).
|
|
long: fast-scan
|
|
takes_value: false
|
|
|
|
- logs-dir:
|
|
help: Path to save the CSV data of the process and/or Nmap XML files. Default to logs/.
|
|
long: logs-dir
|
|
takes_value: true
|
|
multiple: false
|
|
|
|
- no-keep-nmap-logs:
|
|
help: Keep Nmap XML files created in the logs/ folder for every scanned IP. This data will be useful for other tasks.
|
|
short: k
|
|
long: no-keep-nmap-logs
|
|
takes_value: false
|
|
multiple: false
|
|
|
|
- raw-output:
|
|
help: Use raw output instead of a table.
|
|
short: r
|
|
long: raw-output
|
|
takes_value: false
|
|
multiple: false
|
|
conflicts_with:
|
|
- url-output
|
|
|
|
- url-output:
|
|
help: Use HOST:IP output format.
|
|
long: url-output
|
|
takes_value: false
|
|
multiple: false
|
|
conflicts_with:
|
|
- raw-output
|
|
|
|
- stdin:
|
|
help: Read from stdin instead of files or aguments.
|
|
long: stdin
|
|
takes_value: false
|
|
multiple: false
|
|
conflicts_with:
|
|
- files
|
|
- target
|