├── hacking_tools_cheat_sheet_v2.0.pdf
├── hacking_tools_cheat_sheet_v2.0.png
├── hacking_tools_cheat_sheet_v2.0-0.png
├── hacking_tools_cheat_sheet_v2.0-1.png
├── hacking_tools_cheat_sheet_v2.0-2.png
├── createpng
└── README.md
/hacking_tools_cheat_sheet_v2.0.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompassSecurity/Hacking_Tools_Cheat_Sheet/HEAD/hacking_tools_cheat_sheet_v2.0.pdf
--------------------------------------------------------------------------------
/hacking_tools_cheat_sheet_v2.0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompassSecurity/Hacking_Tools_Cheat_Sheet/HEAD/hacking_tools_cheat_sheet_v2.0.png
--------------------------------------------------------------------------------
/hacking_tools_cheat_sheet_v2.0-0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompassSecurity/Hacking_Tools_Cheat_Sheet/HEAD/hacking_tools_cheat_sheet_v2.0-0.png
--------------------------------------------------------------------------------
/hacking_tools_cheat_sheet_v2.0-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompassSecurity/Hacking_Tools_Cheat_Sheet/HEAD/hacking_tools_cheat_sheet_v2.0-1.png
--------------------------------------------------------------------------------
/hacking_tools_cheat_sheet_v2.0-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CompassSecurity/Hacking_Tools_Cheat_Sheet/HEAD/hacking_tools_cheat_sheet_v2.0-2.png
--------------------------------------------------------------------------------
/createpng:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env bash
2 |
3 | #
4 | # Note: You have to add the following line in /etc/ImageMagick-6/policy.xml:
5 | #
6 | #
7 | #
8 |
9 | PDF="$(ls hacking_tools_cheat_sheet_v*.pdf)"
10 | PNG="$(sed 's/\.pdf$/.png/' <<< $PDF)"
11 |
12 | convert -background white -alpha remove -alpha off -density 300 "$PDF" "$PNG"
13 | convert -append "$PDF" "$PNG"
14 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Hacking Tools Cheat Sheet
2 |
3 | ## Blog
4 |
5 | See our blog post for more information:
6 | https://blog.compass-security.com/2019/10/hacking-tools-cheat-sheet/
7 |
8 | The cheat sheet contains:
9 | - Basic Linux Networking Tools (ip, dig)
10 | - Information Gathering (whois, CT logs, subdomain enumeration)
11 | - TCP Tools (ncat)
12 | - TLS Tools (openssl, ncat, sslyze, socat)
13 | - HTTP Tools (python webserver, curl, nikto, gobuster)
14 | - Sniffing (ARP spoofing, tcpdump, Wireshark, …)
15 | - Network Scanning (nmap, masscan)
16 | - Shells (Bind/reverse shells)
17 | - Vulnerability DBs and Exploits (searchsploit and some links)
18 | - Cracking (ncrack, hashcat, John the Ripper)
19 | - Metasploit Framework (Use exploits, generate shells, shell listeners, meterpreter, pivoting, SOCKS proxying)
20 | - Linux Privilege Escalation (LinEnum, lynis, GTFOBins)
21 | - Windows Privilege Escalation (PowerSploit, smbmap)
22 | - Windows Credentials Gathering (mimikatz, lsadump)
23 | - Passh-The-Hash (Lots of impacket tools)
24 | - NTLM Relay (ntlmrelayx, SOCKS proxying)
25 | - Active Directory (BloodHound & PingCastle)
26 | - Online References
27 |
28 | ## Download
29 |
30 | ### PDF
31 |
32 | Download: [hacking_tools_cheat_sheet_v2.0.pdf](https://github.com/CompassSecurity/Hacking_Tools_Cheat_Sheet/raw/master/hacking_tools_cheat_sheet_v2.0.pdf)
33 |
34 | ### Images
35 |
36 | Page 1:
37 |
38 | 
39 |
40 | Page 2:
41 |
42 | 
43 |
44 | Page 3:
45 |
46 | 
47 |
--------------------------------------------------------------------------------