-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcybersecurity.html
More file actions
52 lines (52 loc) · 2.42 KB
/
cybersecurity.html
File metadata and controls
52 lines (52 loc) · 2.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cybersecurity Protocols, Attacks, and Misconfigurations</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1>Cybersecurity Protocols, Attacks, and Misconfigurations</h1>
</header>
<div class="container">
<aside class="sidebar">
<h3>Security Protocols</h3>
<ul>
<li><a href="#" data-item="https">HTTPS</a></li>
<li><a href="#" data-item="tls">TLS</a></li>
<li><a href="#" data-item="ssh">SSH</a></li>
<li><a href="#" data-item="ipsec">IPsec</a></li>
<li><a href="#" data-item="oauth">OAuth</a></li>
<li><a href="#" data-item="saml">SAML</a></li>
</ul>
<h3>Common Attacks</h3>
<ul>
<li><a href="#" data-item="sql-injection">SQL Injection</a></li>
<li><a href="#" data-item="xss">Cross-Site Scripting (XSS)</a></li>
<li><a href="#" data-item="csrf">Cross-Site Request Forgery (CSRF)</a></li>
<li><a href="#" data-item="mitm">Man-in-the-Middle (MitM)</a></li>
<li><a href="#" data-item="phishing">Phishing</a></li>
<li><a href="#" data-item="dos">Denial of Service (DoS)</a></li>
<li><a href="#" data-item="buffer-overflow">Buffer Overflow</a></li>
</ul>
<h3>Misconfigurations</h3>
<ul>
<li><a href="#" data-item="weak-passwords">Weak Passwords</a></li>
<li><a href="#" data-item="unpatched-software">Unpatched Software</a></li>
<li><a href="#" data-item="open-ports">Open Ports</a></li>
<li><a href="#" data-item="default-credentials">Default Credentials</a></li>
<li><a href="#" data-item="improper-access">Improper Access Controls</a></li>
<li><a href="#" data-item="lack-encryption">Lack of Encryption</a></li>
<li><a href="#" data-item="verbose-errors">Verbose Error Messages</a></li>
</ul>
</aside>
<main class="content">
<h2>Welcome</h2>
<p>Select an item from the sidebar to view detailed information.</p>
</main>
</div>
<script src="js/script.js"></script>
</body>
</html>