Files
Offensive-Security-Cheat-Sheet/README.md
2022-07-30 14:20:40 -04:00

2.9 KiB

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


OVERVIEW

Description 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}


NMAP Automator


OVERVIEW

Description Useful script that automates multiple enumeration scans in succession
Download nmapAutomator.sh

USAGE


./nmapAutomator.sh --host {IP ADDRESS} --type All


Port Enumeration


## FTP [21]
## 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


gobuster dir -u {IP ADDRESS} -w /usr/share/wordlists/dirbuster/directory-list-2.3-small.txt

ALTERNATIVE WORD LISTS



┌──(kali㉿kali)-[/usr/share/wordlists/dirb]
└─$ ls
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]
└─$ ls
apache-user-enum-1.0.txt  directories.jbrofuzz    directory-list-2.3-medium.txt  directory-list-lowercase-2.3-medium.txt
apache-user-enum-2.0.txt  directory-list-1.0.txt  directory-list-2.3-small.txt   directory-list-lowercase-2.3-small.txt

Kerberos [88]


POP3 [110]


SNMP [161]


LDAP [389]


SMB [445]


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


evil-winrm -i {IP ADDRESS} -u {USERNAME} -p {PASSWORD}

Reverse Shell

Linux

Windows

Privilege Escalation

Linux

Windows

Password Cracking


John The Ripper


OVERVIEW

Description Password/hash cracking tool
Download Pre-installed on Kali Linux

USAGE


john -w=/usr/share/wordlists/rockyou.txt {file.txt}