diff --git a/README.md b/README.md index 91f856f..387774f 100644 --- a/README.md +++ b/README.md @@ -32,11 +32,15 @@ This is intended to be viewed in the blog found here: [Offensive Security Cheat # Usage nmap -p- --min-rate 5000 -sC -sV {IP ADDRESS} +# UDP Scan +sudo nmap -sU {IP ADDRESS} + # Flags # -p-: scans ALL ports # --min-rate : Send packets no slower than per second # -sC: equivalent to --script=default # -sV: Probe open ports to determine service/version info +# -sU: UDP port scan ```
@@ -103,6 +107,21 @@ ftp {IP ADDRESS}
## DNS [53] +
+## TFTP [69] + +```bash +# About: Connect to TFTP server +# Download: Pre-installed on Kali Linux + +# Usage +tftp {IP ADDRESS} + +# Additional Information +# Only detectable via UDP scan +# No authentication required +``` +
## FINGER [79]