Last active
May 26, 2024 09:02
-
-
Save palawer/890d966c9dfd099e0f838d2a27d9774d to your computer and use it in GitHub Desktop.
nmap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# scan ports | |
nmap -p- --open -sT --min-rate 5000 -vvv -n -Pn <ip> -oG allPorts | |
# find services | |
nmap -sCV -p80,139,445 <ip> -oN targeted | |
nmap -sCV -p <ip> -oN targeted |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment