-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcyberSecurityRoadmap.html
More file actions
196 lines (167 loc) · 6.86 KB
/
cyberSecurityRoadmap.html
File metadata and controls
196 lines (167 loc) · 6.86 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cyber Security Roadmap</title>
<link rel="icon" type="image/x-icon" href="https://i.ibb.co/Jwm9zf3t/b8d203b1-ce1c-4872-9396-dd5e960e17e7.png">
<style>
/* Global Styles */
body {
font-family: 'Courier New', Courier, monospace;
background-color: #000;
color: #00ff00;
margin: 0;
padding: 0;
overflow-x: hidden;
cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%2300ff00" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="2" y="4" width="20" height="16" rx="2"></rect><path d="M7 8 L11 12 L7 16"></path><line x1="13" y1="16" x2="17" y2="16"></line></svg>'), auto;
}
a {
color: #00ff00;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Header */
header {
text-align: center;
padding: 20px;
background-color: #111;
border-bottom: 2px solid #00ff00;
}
header h1 {
font-size: 3rem;
margin: 0;
animation: glitch 1s infinite;
}
@keyframes glitch {
0% {
transform: translate(0);
}
25% {
transform: translate(-2px, 2px);
}
50% {
transform: translate(2px, -2px);
}
75% {
transform: translate(-2px, -2px);
}
100% {
transform: translate(0);
}
}
/* Main Content */
.container {
padding: 20px;
max-width: 800px;
margin: 0 auto;
}
h2 {
color: #00ff00;
border-bottom: 1px solid #00ff00;
padding-bottom: 10px;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin: 10px 0;
}
.tools {
color: #00cc00;
font-style: italic;
}
/* Footer */
.footer {
text-align: center;
padding: 20px;
background-color: #111;
border-top: 2px solid #00ff00;
margin-top: 40px;
}
.developer-text {
font-size: 1rem;
margin: 0;
}
.github-link {
font-weight: bold;
cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%2300ff00" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 4H20V20H4V4Z"></path><path d="M4 4L12 12L20 4"></path></svg>'), auto;
}
.github-link:hover {
color: #00ff00;
text-decoration: underline;
}
</style>
</head>
<body>
<!-- Header -->
<header>
<h1>Cyber Security Roadmap</h1>
</header>
<!-- Main Content -->
<div class="container">
<h2>🚀 Stage 1: Foundational Knowledge</h2>
<ul>
<li><strong>Module 1: IT Fundamentals</strong> - OS Basics, Virtualization</li>
<li class="tools">Tools: VirtualBox, VMware, Bash/PowerShell</li>
<li><strong>Module 2: Networking Basics</strong> - OSI/TCP-IP Models, Subnetting</li>
<li class="tools">Tools: Wireshark, Cisco Packet Tracer</li>
<li><strong>Module 3: Intro to Cybersecurity</strong> - CIA Triad, Malware Basics</li>
<li class="tools">Resources: TryHackMe, "Cybersecurity for Dummies"</li>
</ul>
<h2>🔐 Stage 2: Core Cybersecurity Skills</h2>
<ul>
<li><strong>Module 4: System Security</strong> - OS Hardening, Patch Management</li>
<li class="tools">Tools: Nessus, Windows Defender, Sysinternals Suite</li>
<li><strong>Module 5: Network Security</strong> - Firewalls, IDS/IPS</li>
<li class="tools">Tools: pfSense, Snort, Nmap</li>
<li><strong>Module 6: Cryptography</strong> - AES/RSA, SSL/TLS</li>
<li class="tools">Tools: OpenSSL, Let’s Encrypt</li>
</ul>
<h2>⚔️ Stage 3: Ethical Hacking & Pen Testing</h2>
<ul>
<li><strong>Module 7: Pen Testing</strong> - Recon, Scanning, Exploitation</li>
<li class="tools">Tools: Kali Linux, Metasploit, Burp Suite</li>
<li><strong>Module 8: Web App Security</strong> - OWASP Top 10, Secure Coding</li>
<li class="tools">Tools: OWASP ZAP, SQLMap</li>
</ul>
<h2>🛡️ Stage 4: Defensive Security</h2>
<ul>
<li><strong>Module 9: SOC & SIEM</strong> - Log Analysis, Threat Hunting</li>
<li class="tools">Tools: Splunk, ELK Stack, Azure Sentinel</li>
<li><strong>Module 10: Incident Response</strong> - IR Lifecycle, Forensics</li>
<li class="tools">Tools: Autopsy, Volatility, FTK</li>
<li><strong>Module 11: Threat Intelligence</strong> - TTPs, Threat Feeds</li>
<li class="tools">Tools: MISP, AlienVault OTX</li>
</ul>
<h2>☁️ Stage 5: Advanced Topics</h2>
<ul>
<li><strong>Module 12: Cloud Security</strong> - AWS/Azure Security Tools</li>
<li class="tools">Tools: AWS GuardDuty, CloudTrail</li>
<li><strong>Module 13: IoT Security</strong> - Securing Embedded Systems</li>
<li class="tools">Tools: Shodan, Wireshark for IoT</li>
<li><strong>Module 14: DevSecOps</strong> - CI/CD Pipeline Security</li>
<li class="tools">Tools: Snyk, Clair, Jenkins</li>
</ul>
<h2>📜 Stage 6: Compliance & Governance</h2>
<ul>
<li><strong>Module 15: Compliance Standards</strong> - GDPR, NIST CSF, ISO 27001</li>
<li class="tools">Tools: RSA Archer, Qualys</li>
</ul>
<h2>🎯 Stage 7: Specializations & Career Development</h2>
<ul>
<li><strong>Certifications</strong> - CompTIA Security+, CISSP, OSCP</li>
<li><strong>Practical Experience</strong> - CTFs, Home Labs</li>
<li class="tools">Platforms: Hack The Box, OverTheWire</li>
</ul>
</div>
<!-- Footer -->
<footer class="footer">
<p class="developer-text">Developed by <a href="https://github.com/ExploitInject" class="github-link"
target="_blank">ExploitInject</a></p>
</footer>
</body>
</html>