2021-08-23 01:13:54 +02:00
|
|
|
# nmap
|
|
|
|
|
|
|
|
# Usage
|
|
|
|
|
|
|
|
```sh
|
|
|
|
nmap -oA nmap-full -Pn -sS -T4 -p- --defeat-rst-ratelimit <IP>
|
|
|
|
```
|
|
|
|
```sh
|
|
|
|
nmap -oA nmap-vuln -Pn -script vuln -p <Port,Port,Port,...> <IP>
|
|
|
|
```
|
|
|
|
|
|
|
|
## combo with searchsploit
|
|
|
|
* nmap-full scan
|
|
|
|
```sh
|
|
|
|
sudo nmap -oA --nmap-full -sS -sC -sV -p- --defeat-rst-ratelimit <target-IP>
|
|
|
|
searchsploit --nmap ./nmap-full.xml --verbose
|
|
|
|
```
|
2021-09-08 02:09:14 +02:00
|
|
|
## Wordpress Enumeration
|
|
|
|
```sh
|
|
|
|
nmap --script http-wordpress-enum --scripts-args check-latest=true,search-limit=1500 -p 80 test.com
|
|
|
|
```
|