2024-10-01 11:15:46 -07:00
|
|
|
# vinmap
|
|
|
|
|
|
|
|
> A multithreaded Nmap scanner that splits IP ranges into chunks, performs parallel scans, and merges XML or JSON results.
|
|
|
|
> More information: <https://pypi.org/project/vinmap>.
|
|
|
|
|
|
|
|
- Perform a basic scan of a subnet:
|
|
|
|
|
2025-04-22 06:20:48 +03:00
|
|
|
`vinmap {{[-ip|--ip_range]}} {{192.168.1.0/24}}`
|
2024-10-01 11:15:46 -07:00
|
|
|
|
|
|
|
- Scan a domain with version and OS detection, saving results to a specific file:
|
|
|
|
|
2025-04-22 06:20:48 +03:00
|
|
|
`vinmap {{[-ip|--ip_range]}} {{example.com}} {{[-s|--scan_type]}} "-sV -O" -o {{path/to/scan_results.xml}}`
|
2024-10-01 11:15:46 -07:00
|
|
|
|
|
|
|
- Scan an IP range using 10 chunks and 20 concurrent threads, uses half of the system's CPU cores if not specified:
|
|
|
|
|
2025-04-22 06:20:48 +03:00
|
|
|
`vinmap {{[-ip|--ip_range]}} {{10.0.0.1-10.0.0.255}} {{[-n|--num_chunks]}} 10 {{[-t|--threads]}} 20`
|
2024-10-01 11:15:46 -07:00
|
|
|
|
|
|
|
- Output scan results in JSON format:
|
|
|
|
|
2025-04-22 06:20:48 +03:00
|
|
|
`vinmap {{[-ip|--ip_range]}} {{192.168.1.1-192.168.1.100}} {{[-f|--format]}} json`
|
2024-10-01 11:15:46 -07:00
|
|
|
|
|
|
|
- Scan multiple IPs with default settings and save merged XML output:
|
|
|
|
|
2025-04-22 06:20:48 +03:00
|
|
|
`vinmap {{[-ip|--ip_range]}} {{192.168.1.1,192.168.1.2,...}}`
|