Update README.md

This commit is contained in:
Joe Totes
2022-07-30 15:16:28 -04:00
committed by GitHub
parent e2ae111cd0
commit 62e37be929

View File

@@ -34,7 +34,16 @@ Here you will find a useful collection of commands and file resource locations u
<br /> <br />
```bash ```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} nmap -p- --min-rate 5000 -sC -sV {IP ADDRESS}
-p-: scans ALL ports
--min-rate <number>: Send packets no slower than <number> per second
-sC: equivalent to --script=default
-sV: Probe open ports to determine service/version info
``` ```
<br /> <br />