Update cheatsheets

This commit is contained in:
ivuorinen
2024-10-02 00:17:10 +00:00
parent c03ad03251
commit 6db54f9410
23 changed files with 500 additions and 1 deletions

29
tldr/vinmap Normal file
View File

@@ -0,0 +1,29 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# 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:
`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,...}}`