-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoscp.html
84 lines (75 loc) · 3.19 KB
/
oscp.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" type="image/x-icon" href="/images/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cheat Sheet Collection</title>
<style>
body { font-family: Arial, sans-serif; max-width: 700px; margin: auto; }
h2 { color: #333366; border-bottom: 2px solid #ddd; padding-bottom: 5px; }
.section { margin: 20px 0; }
a { color: #1a73e8; text-decoration: none; }
a:hover { text-decoration: underline; }
</style>
</head>
<body>
<h1>Cheat Sheet Collection</h1>
<div class="section">
<h2>Privilege Escalation</h2>
<ul>
<li><a href="./pdf/16 - Windows Privilege Escalation.html">Windows Privilege Escalation</a></li>
<li><a href="./pdf/17 - Linux Privilege Escalation.html">Linux Privilege Escalation</a></li>
<li><a href="./pdf/15 - Password Attacks.html">Password and Hash Attacks (during/after escalating privileges)</a></li>
</ul>
</div>
<div class="section">
<h2>Web and Application Exploitation</h2>
<ul>
<li><a href="./pdf/8 & 9 - Web Apps.html">Web Applications</a></li>
<li><a href="./pdf/14 - Hacking Common Services.html">Hacking Common Services</a></li>
<li><a href="./pdf/10 - SQL.html">SQL Injection</a></li>
<li><a href="./pdf/11 - Client-side Attacks.html">Client-Side Attacks</a></li>
<li><a href="./pdf/12 - Public Exploits.html">Finding Public Exploits</a></li>
<li><a href="./pdf/13 - Fixing Exploits.html">Fixing Public Exploits</a></li>
</ul>
</div>
<div class="section">
<h2>Network and Tunneling</h2>
<ul>
<li><a href="./pdf/18 - Port Redirection and SSH Tunneling.html">Port Redirection & SSH Tunneling</a> (tldr USE LIGOLO!!!!)</li>
<li><a href="./pdf/19 - Tunneling Through Deep Packet Inspection.html">Tunneling Through Deep Packet Inspection</a></li>
</ul>
</div>
<div class="section">
<h2>Metasploit</h2>
<ul>
<li><a href="./pdf/20 - Metasploit.html">Metasploit Cheat Sheet</a></li>
</ul>
</div>
<div class="section">
<h2>Active Directory Attacks</h2>
<ul>
<li><a href="./pdf/21 - Enumerating Active Directory.html">Enumerating Active Directory</a></li>
<li><a href="./pdf/22 - Attacking Active Directory Authentication.html">Attacking Active Directory Authentication</a></li>
<li><a href="./pdf/23 - Lateral Movement in Active Directory.html">Lateral Movement in Active Directory</a></li>
<li><a href="./pdf/24 - Active Directory Certificate Services.html">Active Directory Certificate Services</a></li>
</ul>
</div>
<div class="section">
<h2>Malware</h2>
<ul>
<li><a href="./pdf/26 - Antivirus Evasion.html">Antivirus Evasion</a></li>
</ul>
</div>
<div class="section">
<h2>Miscellaneous Resources</h2>
<ul>
<li><a href="./pdf/25 - Miscellaneous.html">Miscellaneous Notes</a></li>
<li><a href="https://ippsec.rocks/?#">Ippsec.rocks - search up literally <u>ANY</u> service</a></li>
<li><a href="https://orange-cyberdefense.github.io/ocd-mindmaps/img/pentest_ad_dark_2023_02.svg">AD Mind Map - Orange CyberDefense</a></li>
<li><a href="https://book.hacktricks.xyz/">Hacktricks - provides checklist for every port/common service</a></li>
</ul>
</div>
</body>
</html>