-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflags.html
More file actions
85 lines (83 loc) · 4.03 KB
/
flags.html
File metadata and controls
85 lines (83 loc) · 4.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flags</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="navbar">
<div class="logo">
Void<span class="highlight">Core</span>
</div>
<div class="nav-links">
<ul>
<li><a href="index.html" class="nav-item">Home</a></li>
<li><a href="about-us.html" class="nav-item">About Us</a></li>
<li><a href="void-ransomware.html" class="nav-item">Void Ransomware</a></li>
<li><a href="recruitment.html" class="nav-item">Recruitment</a></li>
<li><a href="flags.html" class="nav-item">Flags</a></li>
</ul>
</div>
<a href="login.html" class="login-btn">Login</a>
</div>
<section class="flag-info">
<h2>Flags Information and Rules</h2>
<p>Welcome to the VoidCore Dark Web CtF flag page!. Each flag below represents a specific vulnerability or technique which either has compromised Dark Web site's or provided significant impact for Law enforcement.</p>
<h3>Rules:</h3>
<ul>
<li class="javascript-warning">PLEASE ENSURE YOU HAVE JAVASCRIPT ENABLED ON YOUR TOR BROWSER</li>
<li>Each flag is case senstive.</li>
<li>Submit the correct flag in the provided input box.</li>
<li>Do not share solutions with others. If you are stuck a hint may be provided if struggling.</li>
<li>Please make an effort to not destroy or tamper with any data within the site.</li>
</ul>
</section>
<div class="flag-container">
<div class="flag">
<div class="flag-number">Flag 1</div>
<p>XSS</p>
<input type="text" placeholder="Submit Flag">
<button class="submit-button">Submit</button>
<button class="hint-button">Hint</button> <div class="hint" style="display: none;">That search bar for victims seems broken.</div>
</div>
<div class="flag">
<div class="flag-number">Flag 2</div>
<p>SQL injected into VoidSoup</p>
<input type="text" placeholder="Submit Flag">
<button class="submit-button">Submit</button>
<button class="hint-button">Hint</button> <div class="hint" style="display: none;">Where would I login??</div>
</div>
<div class="flag">
<div class="flag-number">Flag 3</div>
<p>What is Scopetize's secret key?</p>
<input type="text" placeholder="Submit Flag">
<button class="submit-button">Submit</button>
<button class="hint-button">Hint</button> <div class="hint" style="display: none;">Affiliates need a secret key within the database.</div>
</div>
<div class="flag">
<div class="flag-number">Flag 4</div>
<p>What is the path for the IP leak?</p>
<input type="text" placeholder="Submit Flag">
<button class="submit-button">Submit</button>
<button class="hint-button">Hint</button> <div class="hint" style="display: none;">Status pages are helpful!</div>
</div>
<div class="flag">
<div class="flag-number">Flag 5</div>
<p>What is the IP of the site?</p>
<input type="text" placeholder="Submit Flag">
<button class="submit-button">Submit</button>
<button class="hint-button">Hint</button> <div class="hint" style="display: none;">Check VHost</div>
</div>
<div class="flag">
<div class="flag-number">Flag 6</div>
<p>What the server version? Include the full line</p>
<input type="text" placeholder="Submit Flag">
<button class="submit-button">Submit</button>
<button class="hint-button">Hint</button> <div class="hint" style="display: none;">Check the top</div>
</div>
</div>
<script src="javascript.js"></script>
</body>
</html>