diff --git a/README.md b/README.md
index 81161aa..7dcba07 100644
--- a/README.md
+++ b/README.md
@@ -34,7 +34,16 @@ Here you will find a useful collection of commands and file resource locations u
```bash
+# A network scanning tool that identifies devices, ports, services, and operating systems
+# Download: Pre-installed on Kali Linux
+
+#command to run
nmap -p- --min-rate 5000 -sC -sV {IP ADDRESS}
+
+-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
```