-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
107 lines (93 loc) · 3.81 KB
/
Copy pathindex.html
File metadata and controls
107 lines (93 loc) · 3.81 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Penetration Testing Sandbox</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700;800&family=Tajawal:wght@400;500;700;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<canvas id="matrix-bg"></canvas>
<div class="scanlines"></div>
<div class="vignette"></div>
<div id="boot-screen">
<div class="boot-lines" id="boot-lines"></div>
</div>
<div id="app" class="hidden">
<header class="topbar">
<div class="topbar__brand">
<span class="brand-mark">◈</span>
<div class="brand-text">
<span class="brand-title">Exploit_Lab</span>
<span class="brand-sub" id="brand-sub">PENETRATION TESTING SANDBOX v2.1</span>
</div>
</div>
<div class="topbar__status">
<div class="status-chip">
<span class="dot dot--live"></span>
<span id="target-label" dir="ltr">TARGET: sandbox.local</span>
</div>
<div class="status-chip">
<span class="dot dot--warn"></span>
<span id="mode-label" dir="ltr">MODE: SIMULATED</span>
</div>
<div class="clock" id="clock" dir="ltr">00:00:00</div>
<button class="lang-toggle" id="lang-toggle" type="button">
<span class="lang-toggle__icon">⇄</span>
<span id="lang-toggle-label">العربية</span>
</button>
</div>
</header>
<section class="intro">
<h1 class="intro__title" lang="en">
<span class="glitch-tag" id="intro-title-tag" dir="ltr"><span id="intro-title-glitch" data-text="Vulnerability">Vulnerability</span></span>
</h1>
<p class="intro__desc" id="intro-desc"></p>
</section>
<section class="modules" id="modules"></section>
<section class="lab hidden" id="lab">
<div class="lab__topbar">
<div class="lab__title">
<span class="lab__badge" id="lab-badge" dir="ltr">SQLi</span>
<span id="lab-title-text">SQL Injection Lab</span>
</div>
<button class="lab__close" id="lab-close">Close ✕</button>
</div>
<div class="lab__hint" id="lab-hint">
<span class="hint-icon">☞</span>
<div>
<strong id="hint-label">Hint:</strong>
<span id="hint-text">—</span>
</div>
</div>
<div class="repeater">
<div class="pane pane--request">
<div class="pane__header">
<span class="pane__label" dir="ltr">REQUEST</span>
<div class="pane__actions">
<button id="btn-reset" class="pane-btn" title="Restore original request">↺ Reset</button>
<button id="btn-send" class="pane-btn pane-btn--send" title="Send request">Send ▶</button>
</div>
</div>
<textarea id="request-box" class="code-box" spellcheck="false" dir="ltr"></textarea>
</div>
<div class="pane pane--response">
<div class="pane__header">
<span class="pane__label" dir="ltr">RESPONSE</span>
<span id="resp-status" class="status-pill" dir="ltr">—</span>
</div>
<pre id="response-box" class="code-box code-box--readonly" dir="ltr"><span class="placeholder">// Click "Send" to see the mock server response here</span></pre>
</div>
</div>
<div class="verdict" id="verdict"></div>
</section>
<footer class="footer">
<p id="footer-text">This site is purely educational — every request and response is simulated and never touches a real server or system.</p>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>