Update README.md

This commit is contained in:
Joe Totes
2022-07-30 15:21:11 -04:00
committed by GitHub
parent 62e37be929
commit 40e758350d

View File

@@ -20,24 +20,11 @@ Here you will find a useful collection of commands and file resource locations u
<br /> <br />
**OVERVIEW**
| | |
| :-----------: | :-----------: |
| Description | A network scanning tool that identifies devices, ports, services, and operating systems |
| Download | Pre-installed on Kali Linux |
<br />
**USAGE**
<br />
```bash ```bash
# A network scanning tool that identifies devices, ports, services, and operating systems # A network scanning tool that identifies devices, ports, services, and operating systems
# Download: Pre-installed on Kali Linux # Download: Pre-installed on Kali Linux
#command to run # Usage
nmap -p- --min-rate 5000 -sC -sV {IP ADDRESS} nmap -p- --min-rate 5000 -sC -sV {IP ADDRESS}
-p-: scans ALL ports -p-: scans ALL ports
@@ -55,21 +42,20 @@ nmap -p- --min-rate 5000 -sC -sV {IP ADDRESS}
<br /> <br />
**OVERVIEW**
| | |
| :-----------: | :-----------: |
| Description | Useful script that automates multiple enumeration scans in succession |
| Download | [nmapAutomator.sh](https://github.com/21y4d/nmapAutomator/blob/master/nmapAutomator.sh) |
<br />
**USAGE**
<br />
```bash ```bash
# Useful script that automates multiple enumeration scans in succession
# Download: [nmapAutomator.sh](https://github.com/21y4d/nmapAutomator/blob/master/nmapAutomator.sh)
./nmapAutomator.sh --host {IP ADDRESS} --type All ./nmapAutomator.sh --host {IP ADDRESS} --type All
--type Network : Shows all live hosts in the host's network (~15 seconds)
--type Port : Shows all open ports (~15 seconds)
--type Script : Runs a script scan on found ports (~5 minutes)
--type Full : Runs a full range port scan, then runs a thorough scan on new ports (~5-10 minutes)
--type UDP : Runs a UDP scan "requires sudo" (~5 minutes)
--type Vulns : Runs CVE scan and nmap Vulns scan on all found ports (~5-15 minutes)
--type Recon : Suggests recon commands, then prompts to automatically run them
--type All : Runs all the scans (~20-30 minutes)
``` ```
<br /> <br />