-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmitre-attack.html
More file actions
77 lines (71 loc) · 4.15 KB
/
mitre-attack.html
File metadata and controls
77 lines (71 loc) · 4.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Security-Policy" content="default-src 'none'; script-src 'self'; style-src 'self' https://fonts.googleapis.com; font-src https://fonts.gstatic.com; img-src 'self' data:; connect-src 'self';">
<title>MITRE ATT&CK Quiz</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="start-screen">
<div class="center-wrapper">
<div class="start-box">
<h1><span>MITRE</span> ATT&CK</h1>
<div class="subtitle">Enterprise Framework Knowledge</div>
<div class="stats">
<div class="stat"><div class="stat-num">60</div><div class="stat-label">Questions</div></div>
<div class="stat"><div class="stat-num">Self-paced</div><div class="stat-label">No Timer</div></div>
</div>
<p>
Covers all 14 Enterprise Tactics: Reconnaissance, Resource Development, Initial Access,
Execution, Persistence, Privilege Escalation, Defense Evasion, Credential Access,
Discovery, Lateral Movement, Collection, Command & Control, Exfiltration & Impact.
</p>
<div id="high-score" class="high-score-box">Best Score: --</div>
<div class="start-actions">
<button class="btn btn-p" id="start-btn">Start Quiz</button>
<button class="btn btn-s" id="back-btn">Back to Menu</button>
</div>
</div>
</div>
</div>
<div class="header">
<div class="header-container"><button class="btn btn-s" id="home-btn" title="Main Menu"><svg viewBox="0 0 24 24" width="18" height="18" stroke="currentColor" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round" style="color: var(--primary)"><path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path><polyline points="9 22 9 12 15 12 15 22"></polyline></svg></button><button class="btn btn-s" id="restart-btn" title="Restart Quiz" ><svg viewBox="0 0 24 24" width="18" height="18" stroke="currentColor" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round" style="color: var(--primary)"><polyline points="23 4 23 10 17 10"></polyline><polyline points="1 20 1 14 7 14"></polyline><path d="M3.51 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0 0 20.49 15"></path></svg></button>
<button class="btn btn-s" id="menu-toggle"><svg viewBox="0 0 24 24" width="18" height="18" stroke="currentColor" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round" style="color: var(--primary)"><line x1="3" y1="12" x2="21" y2="12"></line><line x1="3" y1="6" x2="21" y2="6"></line><line x1="3" y1="18" x2="21" y2="18"></line></svg></button>
<div class="header-title">MITRE <span>ATT&CK</span> Quiz</div>
</div>
<div id="progress-display" class="progress-text">0 / 60</div>
</div>
<div class="main" id="exam-ui">
<div class="sidebar" id="sidebar"></div>
<div class="content" id="question-container"></div>
</div>
<div class="footer" id="footer">
<div>
<button class="btn btn-s" id="prev-btn">Previous</button>
<button class="btn btn-w" id="flag-btn">Flag</button><button class="btn btn-p" id="next-footer-btn" >Next</button>
</div>
<div id="status">Q 1 / 60</div>
<div><button class="btn btn-g" id="finish-btn">Finish Quiz</button></div>
</div>
<div id="results-screen" style="display: none;">
<div class="center-wrapper">
<div class="results-content">
<h1>Quiz <span>Results</span></h1>
<div id="score-circle" class="score-circle">0%</div>
<div id="raw-score"></div>
<div class="start-actions">
<button class="btn btn-p" id="reload-btn">Take New Quiz</button>
<button class="btn btn-s" id="results-home-btn">Main Menu</button>
</div>
</div>
<div id="review-list"></div>
</div>
</div>
<script src="data/mitre-attack.js"></script>
<script src="js/quiz.js"></script>
<script src="js/init-quiz.js"></script>
<div class="version-tag">v1.9.4</div>
</body>
</html>