From 82e447291af017b333bd151317cff4af8cf32ff2 Mon Sep 17 00:00:00 2001 From: Vince Vasile <133192356+VinnyVanGogh@users.noreply.github.com> Date: Tue, 1 Oct 2024 11:15:46 -0700 Subject: [PATCH] vinmap: add page (#13919) Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Co-authored-by: Wiktor Perskawiec --- pages/common/vinmap.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/common/vinmap.md diff --git a/pages/common/vinmap.md b/pages/common/vinmap.md new file mode 100644 index 000000000..d6554f958 --- /dev/null +++ b/pages/common/vinmap.md @@ -0,0 +1,24 @@ +# vinmap + +> A multithreaded Nmap scanner that splits IP ranges into chunks, performs parallel scans, and merges XML or JSON results. +> More information: . + +- Perform a basic scan of a subnet: + +`vinmap -ip {{192.168.1.0/24}}` + +- Scan a domain with version and OS detection, saving results to a specific file: + +`vinmap -ip {{example.com}} -s "-sV -O" -o {{path/to/scan_results.xml}}` + +- Scan an IP range using 10 chunks and 20 concurrent threads, uses half of the system's CPU cores if not specified: + +`vinmap -ip {{10.0.0.1-10.0.0.255}} -n 10 -t 20` + +- Output scan results in JSON format: + +`vinmap -ip {{192.168.1.1-192.168.1.100}} -f json` + +- Scan multiple IPs with default settings and save merged XML output: + +`vinmap -ip {{192.168.1.1,192.168.1.2,...}}`