-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcyber-security-summary.html
More file actions
464 lines (403 loc) · 19.3 KB
/
cyber-security-summary.html
File metadata and controls
464 lines (403 loc) · 19.3 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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
<!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>
<style>
:root {
--bg-color: #121212;
--card-bg: #1e1e1e;
--text-color: #ffffff;
--accent-color: #eee313;
--border-color: #333333;
--hover-bg: #2d2d2d;
--section-bg: #252526;
--link-color: #64b5f6;
--beginner-color: #4CAF50;
--intermediate-color: #2196F3;
--advanced-color: #9C27B0;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: var(--bg-color);
color: var(--text-color);
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
padding: 20px;
}
.header-container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 20px 40px;
border-bottom: 1px solid var(--border-color);
margin-bottom: 20px;
}
.logo-container {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
}
.nav-links {
display: flex;
flex-direction: row;
gap: 10px;
margin-top: 10px;
}
.nav-link {
display: inline-block;
padding: 8px 15px;
background-color: var(--card-bg);
border: 1px solid var(--border-color);
border-radius: 8px;
color: var(--link-color);
text-decoration: none;
font-size: 0.9rem;
transition: background-color 0.3s;
}
.nav-link:hover {
background-color: var(--hover-bg);
}
.main-header {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
margin-bottom: 20px;
}
.back-link {
display: block;
margin: 0 auto 10px;
color: var(--link-color);
text-decoration: none;
font-size: 1rem;
text-align: center;
}
.back-link:hover {
text-decoration: underline;
}
h1 {
color: var(--accent-color);
font-size: 2.5rem;
margin-bottom: 10px;
}
.subtitle {
color: #aaaaaa;
font-size: 1rem;
margin-bottom: 30px;
}
.container {
max-width: 1200px;
margin: 0 auto;
}
.section {
margin-bottom: 40px;
background-color: var(--section-bg);
border-radius: 8px;
padding: 25px;
border: 1px solid var(--border-color);
border-left: 5px solid;
}
.beginner {
border-left-color: #eee313;
}
.intermediate {
border-left-color: #eee313;
}
.advanced {
border-left-color: #eee313;
}
.section h2 {
color: var(--accent-color);
margin-bottom: 25px;
font-size: 1.8rem;
display: flex;
align-items: center;
gap: 10px;
}
.topic {
margin-bottom: 20px;
padding-bottom: 15px;
border-bottom: 1px solid var(--border-color);
}
.topic h3 {
color: #ECEFF1;
margin-bottom: 10px;
font-size: 1.2rem;
font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif
}
.topic p {
color: #cccccc;
margin-bottom: 10px;
line-height: 1.7;
}
.resources {
margin-top: 15px;
}
.resource {
color: var(--link-color);
text-decoration: none;
display: block;
margin-bottom: 8px;
padding: 5px 10px;
background-color: rgba(30, 30, 30, 0.7);
border-radius: 4px;
transition: background-color 0.3s;
}
.resource:hover {
background-color: rgba(64, 64, 64, 0.7);
text-decoration: underline;
}
.expand-btn {
background-color: #333333;
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
margin-top: 10px;
transition: background-color 0.3s;
font-family: inherit;
font-size: 0.95rem;
}
.expand-btn:hover {
background-color: #444444;
}
.resources {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease-out;
}
.resources.expanded {
max-height: 1000px;
}
.level-badge {
display: inline-block;
padding: 3px 10px;
border-radius: 12px;
font-size: 0.8rem;
font-weight: bold;
margin-left: 10px;
}
/* Full Roadmap Link */
.full-roadmap-link {
display: block;
text-align: center;
margin: 40px auto;
padding: 15px 25px;
background-color: var(--card-bg);
border: 1px solid var(--border-color);
border-radius: 8px;
color: var(--link-color);
text-decoration: none;
font-size: 1.1rem;
max-width: 300px;
transition: background-color 0.3s;
}
.full-roadmap-link:hover {
background-color: var(--hover-bg);
}
@media (max-width: 768px) {
.header-container {
flex-direction: column;
align-items: center;
}
.logo-container {
margin-bottom: 10px;
}
.nav-links {
flex-direction: column;
width: 100%;
}
.nav-link {
text-align: center;
}
.section {
padding: 15px;
}
.full-roadmap-link {
max-width: 100%;
}
h1 {
font-size: 2rem;
}
}
</style>
</head>
<body>
<div class="container">
<div class="main-header">
<a href="index.html" class="back-link">← Back to Main Menu</a>
<h1>Cyber Security Roadmap</h1>
<p class="subtitle">Complete guide to learning cybersecurity from beginner to advanced</p>
</div>
<!-- Basic Level -->
<div class="section beginner">
<h2>Basic Level</h2>
<div class="topic">
<h3>Computer Networks</h3>
<p>Understanding network concepts like TCP/IP, HTTP/HTTPS, DNS, SSL, etc.</p>
<button class="expand-btn">Show Resources</button>
<div class="resources">
<a href="https://www.youtube.com/playlist?list=PLXuWQ9AVf5nQXEVgJI1TQ6Yh2yWcA_4WY" class="resource" target="_blank">Networks Lectures (YouTube)</a>
<a href="https://www.computernetworkingnotes.com/" class="resource" target="_blank">Computer Networking Notes</a>
<a href="https://www.coursera.org/learn/computer-networking" class="resource" target="_blank">Coursera - Computer Networking</a>
<a href="https://www.khanacademy.org/computing/computers-and-internet" class="resource" target="_blank">Khan Academy - Computers and Internet</a>
</div>
</div>
<div class="topic">
<h3>Operating Systems</h3>
<p>Understanding OS concepts like process management, memory, file systems, security.</p>
<button class="expand-btn">Show Resources</button>
<div class="resources">
<a href="https://pages.cs.wisc.edu/~remzi/OSTEP/" class="resource" target="_blank">OSTEP Book</a>
<a href="https://www.youtube.com/playlist?list=PLBlnK6fEyqRiVhbXDGLXDk_OQAeuVcp2O" class="resource" target="_blank">OS Lectures (YouTube)</a>
<a href="https://www.coursera.org/learn/os" class="resource" target="_blank">Coursera - Operating Systems</a>
<a href="https://www.edx.org/course/introduction-to-linux" class="resource" target="_blank">edX - Introduction to Linux</a>
</div>
</div>
<div class="topic">
<h3>Basic Cryptography</h3>
<p>Introduction to encryption, digital signatures, concepts like AES, RSA, Hash Functions.</p>
<button class="expand-btn">Show Resources</button>
<div class="resources">
<a href="https://www.khanacademy.org/computing/computer-science/cryptography" class="resource" target="_blank">Cryptography - Khan Academy</a>
<a href="https://cryptobook.nakov.com/" class="resource" target="_blank">Practical Cryptography for Developers</a>
<a href="https://www.coursera.org/learn/cryptography" class="resource" target="_blank">Coursera - Cryptography</a>
<a href="https://www.udacity.com/course/applied-cryptography--cs387" class="resource" target="_blank">Udacity - Applied Cryptography</a>
</div>
</div>
<div class="topic">
<h3>Git & GitHub</h3>
<p>Git is a version control system for tracking changes in source code. GitHub is a platform for hosting repositories and collaborating on projects.</p>
<button class="expand-btn">Show Resources</button>
<div class="resources">
<a href="https://git-scm.com/doc" class="resource" target="_blank">Official Git Documentation</a>
<a href="https://docs.github.com/en" class="resource" target="_blank">GitHub Docs</a>
<a href="https://www.atlassian.com/git/tutorials" class="resource" target="_blank">Atlassian - Git Tutorials</a>
<a href="https://www.freecodecamp.org/news/git-and-github-for-beginners/" class="resource" target="_blank">FreeCodeCamp - Git and GitHub for Beginners</a>
</div>
</div>
</div>
<!-- Beyond Basic Section -->
<div class="section intermediate">
<h2>Beyond Basic</h2>
<div class="topic">
<h3>Web Application Security</h3>
<p>Understanding common web application attacks like XSS, CSRF, SQL Injection, etc.</p>
<button class="expand-btn">Show Resources</button>
<div class="resources">
<a href="https://owasp.org/www-project-top-ten/" class="resource" target="_blank">OWASP Top 10</a>
<a href="https://portswigger.net/web-security" class="resource" target="_blank">Web Security Academy</a>
<a href="https://www.hacksplaining.com/lesson" class="resource" target="_blank">Hacksplaining - Security Lessons</a>
<a href="https://www.udemy.com/course/web-security-fundamentals/" class="resource" target="_blank">Udemy - Web Security Fundamentals</a>
</div>
</div>
<div class="topic">
<h3>Network Security</h3>
<p>Techniques to protect networks like Firewalls, IDS/IPS, VPNs, etc.</p>
<button class="expand-btn">Show Resources</button>
<div class="resources">
<a href="https://www.cisco.com/c/en/us/products/security/what-is-network-security.html" class="resource" target="_blank">Cisco Network Security</a>
<a href="https://www.sans.org/cyber-security-courses/network-security-fundamentals/" class="resource" target="_blank">SANS Network Security</a>
<a href="https://www.coursera.org/learn/network-security" class="resource" target="_blank">Coursera - Network Security</a>
<a href="https://www.cybrary.it/course/network-security/" class="resource" target="_blank">Cybrary - Network Security</a>
</div>
</div>
<div class="topic">
<h3>Vulnerability Assessment & Penetration Testing (VAPT)</h3>
<p>Techniques for testing security and identifying vulnerabilities.</p>
<button class="expand-btn">Show Resources</button>
<div class="resources">
<a href="https://www.offensive-security.com/metasploit-unleashed/" class="resource" target="_blank">Metasploit Unleashed</a>
<a href="https://tryhackme.com/" class="resource" target="_blank">TryHackMe</a>
<a href="https://www.hackthebox.com/" class="resource" target="_blank">HackTheBox</a>
<a href="https://www.eccouncil.org/train-certify/certified-ethical-hacker-ceh/" class="resource" target="_blank">EC-Council - Certified Ethical Hacker</a>
</div>
</div>
<div class="topic">
<h3>Security Tools (Nmap, Wireshark, Burp Suite)</h3>
<p>Common tools for security testing and network analysis.</p>
<button class="expand-btn">Show Resources</button>
<div class="resources">
<a href="https://nmap.org/book/toc.html" class="resource" target="_blank">Nmap Documentation</a>
<a href="https://www.wireshark.org/docs/" class="resource" target="_blank">Wireshark Documentation</a>
<a href="https://portswigger.net/burp/documentation" class="resource" target="_blank">Burp Suite Documentation</a>
<a href="https://www.udemy.com/course/nmap-for-beginners/" class="resource" target="_blank">Udemy - Nmap for Beginners</a>
<a href="https://www.youtube.com/c/IppSec" class="resource" target="_blank">IppSec - Security Tutorials (YouTube)</a>
</div>
</div>
</div>
<!-- Advanced Level -->
<div class="section advanced">
<h2>Advanced Level</h2>
<div class="topic">
<h3>Reverse Engineering</h3>
<p>Analyzing software to understand how it works and find vulnerabilities.</p>
<button class="expand-btn">Show Resources</button>
<div class="resources">
<a href="https://www.begin.re/" class="resource" target="_blank">Begin.RE</a>
<a href="https://github.com/0xInfection/Awesome-Reversing" class="resource" target="_blank">Awesome Reversing Resources</a>
<a href="https://www.coursera.org/learn/reverse-engineering" class="resource" target="_blank">Coursera - Reverse Engineering</a>
<a href="https://www.udemy.com/course/reverse-engineering-and-malware-analysis-in-21-hours/" class="resource" target="_blank">Udemy - Reverse Engineering and Malware Analysis</a>
</div>
</div>
<div class="topic">
<h3>Malware Analysis</h3>
<p>Analyzing malicious software to understand its impact and behavior.</p>
<button class="expand-btn">Show Resources</button>
<div class="resources">
<a href="https://www.malware-traffic-analysis.net/training.html" class="resource" target="_blank">Malware Traffic Analysis</a>
<a href="https://www.packtpub.com/product/mastering-malware-analysis/9781788992221" class="resource" target="_blank">Mastering Malware Analysis</a>
<a href="https://www.coursera.org/learn/malware-analysis" class="resource" target="_blank">Coursera - Malware Analysis</a>
<a href="https://www.sans.org/cyber-security-courses/malware-analysis-fundamentals/" class="resource" target="_blank">SANS - Malware Analysis Fundamentals</a>
</div>
</div>
<div class="topic">
<h3>Incident Response & Digital Forensics</h3>
<p>Procedures for responding to attacks and collecting digital evidence.</p>
<button class="expand-btn">Show Resources</button>
<div class="resources">
<a href="https://www.sans.org/cyber-security-courses/incident-handlers-handbook/" class="resource" target="_blank">SANS Incident Handler's Handbook</a>
<a href="https://dfir.org/" class="resource" target="_blank">DFIR Resources</a>
<a href="https://www.coursera.org/learn/digital-forensics-concepts" class="resource" target="_blank">Coursera - Digital Forensics Concepts</a>
<a href="https://www.udacity.com/course/intro-to-digital-forensics--ud1019" class="resource" target="_blank">Udacity - Introduction to Digital Forensics</a>
</div>
</div>
<div class="topic">
<h3>Security Compliance & Standards (ISO 27001, NIST)</h3>
<p>Standards and regulations for ensuring security in organizations.</p>
<button class="expand-btn">Show Resources</button>
<div class="resources">
<a href="https://www.iso.org/isoiec-27001-information-security.html" class="resource" target="_blank">ISO 27001</a>
<a href="https://www.nist.gov/cyberframework" class="resource" target="_blank">NIST Cybersecurity Framework</a>
<a href="https://www.pcisecuritystandards.org/" class="resource" target="_blank">PCI Security Standards</a>
<a href="https://www.coursera.org/learn/information-security-framework" class="resource" target="_blank">Coursera - Information Security Framework</a>
</div>
</div>
</div>
</div>
<!-- Full Roadmap Link -->
<a href="cybersecurity.html" class="full-roadmap-link" target="_blank">Full Roadmap Version</a>
<script>
// Toggle resource visibility
document.querySelectorAll('.expand-btn').forEach(button => {
button.addEventListener('click', () => {
const resources = button.nextElementSibling;
resources.classList.toggle('expanded');
if (resources.classList.contains('expanded')) {
button.textContent = 'Hide Resources';
} else {
button.textContent = 'Show Resources';
}
});
});
</script>
</body>
</html>