mirror of
https://github.com/cheat/cheat.git
synced 2024-12-18 18:55:06 +01:00
[NMAP] Update nmap
This commit is contained in:
parent
c5f1d5c1ac
commit
1e7ee5b7fa
@ -33,4 +33,22 @@ nmap -traceroute [target]
|
||||
# ARP ping: -PR
|
||||
|
||||
# Example: Ping scan all machines on a class C network
|
||||
nmap -sP 192.168.0.0/24
|
||||
nmap -sP 192.168.0.0/24*
|
||||
|
||||
# Use some script:
|
||||
nmap --script default,safe
|
||||
|
||||
# Loads the script in the default category, the banner script, and all .nse files in the directory /home/user/customscripts.
|
||||
nmap --script default,banner,/home/user/customscripts
|
||||
|
||||
# Loads all scripts whose name starts with http-, such as http-auth and http-open-proxy.
|
||||
nmap --script 'http-*'
|
||||
|
||||
# Loads every script except for those in the intrusive category.
|
||||
nmap --script "not intrusive"
|
||||
|
||||
# Loads those scripts that are in both the default and safe categories.
|
||||
nmap --script "default and safe"
|
||||
|
||||
# Loads scripts in the default, safe, or intrusive categories, except for those whose names start with http-.
|
||||
nmap --script "(default or safe or intrusive) and not http-*"
|
||||
|
Loading…
Reference in New Issue
Block a user