Scan a IPv4 range for a certain port
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wwmap/README.md

36 lines
899 B

2 years ago
# wwmap
Scan a IPv4 range for a certain port.
## Usage
2 years ago
`$ wwmap --help` for help.
2 years ago
2 years ago
USAGE:
wwmap [OPTIONS] <PORT> [CIDR]
2 years ago
2 years ago
ARGS:
<PORT> Which port to scan for.
<CIDR> IPv4 subnet range (CIDR). Leave empty for the whole internet. [default: 0.0.0.0/0]
2 years ago
2 years ago
OPTIONS:
-h, --help
Print help information
2 years ago
2 years ago
-i, --ignore-ip-list <IGNORELIST>
A file containing ignored IPv4 addresses (seperated by linebreaks). [default:
ignore-ips-list.txt]
2 years ago
2 years ago
-n, --threads <THREADS>
Amount of threads that will be used when scanning for the specified port. [default: 1]
2 years ago
2 years ago
-v, --verbose
Enable verbose (debug) output
2 years ago
2 years ago
-V, --version
Print version information
2 years ago
2 years ago
### Examples
You can scan the whole internet for a HTTP server using this command: `$ wwmap 80 0.0.0.0/0`.
It is recommended to use a large amount threads for large IPv4 ranges (like the whole internet).