-
Notifications
You must be signed in to change notification settings - Fork 0
/
popfdjfk4.html
117 lines (115 loc) · 2.73 KB
/
popfdjfk4.html
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
108
109
110
111
112
113
114
115
116
117
<!doctype html>
<html>
<head>
<title>Cave of Eleven Sages</title>
<script src="/js/aes.js"></script>
<script src="/js/ctf.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script>
cipheredText = "U2FsdGVkX1+0YwIT5oYO93ah4JRO5F87Dzv3DFxATEvp6ETMMHWb5EdrCuhK+1IFIFXG7z6XZSOj6Ota2XXtOg==";
</script>
<style>
:root{
--dark: #343e3d;
--theme: #38e4ae;
--light: #ffffff;
}
* {
box-sizing: border-box;
}
body{
padding: 0;
margin: 0;
font-family: monospace, sans-serif;
text-align: center;
background: var(--dark);
color: var(--light);
font-size: 1rem;
}
header{
position: fixed;
top: 0;
left: 0;
width: 100%;
padding: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.2);
background: var(--dark);
}
header>h1{
font-size: 1.5rem;
color: var(--theme);
}
main{
display: inline-block;
width: min(100%,640px);
text-align: left;
margin: 80px 0;
padding: 16px;
}
main>img{
width: 100%;
}
footer{
position: fixed;
bottom: 0;
left: 0;
width: 100%;
padding: 10px;
background: var(--theme);
text-align: center;
}
form{
display: inline-grid;
width: min(100%,640px);
grid-template-columns: 1fr auto;
grid-gap: 10px;
}
input,input:focus,button{
border: 0;
margin: 0;
outline: none;
background: none;
border-bottom: 2px solid var(--dark);
color: var(--dark);
padding: 5px;
font-size: 1rem;
font-family: monospace, sans-serif;
width: 100%;
}
button{
background: var(--dark);
color: var(--light);
border: none;
padding: 5px 15px;
border-radius: 2px;
}
</style>
</head>
<body>
<header>
<h1>Room 4</h1>
</header>
<br>
<main>
<p>
One of the sages must have been proficient in Sanskrit.
You're not surprised, considering it is one of the
oldest languages to have ever existed. As you enter the
fourth door, the torches light up but what surprises you is
the absence of any carvings on the walls. You look
around to understand how to escape this room and finally
notice that this time the puzzle is beneath your feet -
A picture of our solar system.
<br><br>
Looks like we have an astrophysicist among the sages?
</p>
<img src="5s.png">
</main>
<footer>
<form action="javascript:decrypt()">
<input type="text" id="passwordInput" placeholder="(5)" autocomplete="off" required>
<button type="submit">unlock</button>
</form>
</footer>
</body>
<html>