-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpertama.html
More file actions
45 lines (40 loc) · 1 KB
/
pertama.html
File metadata and controls
45 lines (40 loc) · 1 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
<!DOCTYPE html>
<html>
<head>
<title>The Impossible Flag</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #0a0a0a;
color: #0f0;
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
pre {
background-color: #111;
padding: 15px;
border-radius: 5px;
}
.hidden {
color: #0a0a0a;
}
.hidden:hover {
color: #0f0;
}
</style>
</head>
<body>
<h1>The Impossible Flag</h1>
<p>Flag tersembunyi ada di halaman ini. Gunakan inspect element!</p>
<pre>
Coba cari di sekitar sini...
<!-- CTF{Qu4ntum_Crypt0_1s_Futur3} -->
Atau mungkin di bagian style?
</pre>
<div class="hidden">CTF{H1dd3n_1n_Pl41n_S1ght}</div>
<script>
console.log("Flag ketiga: CTF{Ch3ck_C0ns0l3_L0g}");
</script>
</body>
</html>