Last active
February 6, 2025 09:54
-
-
Save dmitry-udod/d3633055a999c6335fc99ff32b985433 to your computer and use it in GitHub Desktop.
nmap
This file contains 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
#Sample Nmap http-enum Script Output | |
nmap -sV --script=http-enum -p 80 192.168.88.251 | |
# Services discovery | |
nmap -sV -O 192.168.88.251 | |
#Running the Nmap NSE Default Scripts | |
nmap -sC 192.168.88.251 | |
#Enumerating SMB Shares | |
nmap --script smb-enum-shares.nse -p 445 192.168.88.251 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment