-
Notifications
You must be signed in to change notification settings - Fork 0
/
aoc2022.html
138 lines (112 loc) · 4.54 KB
/
aoc2022.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html lang="en" class="h-100">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="Remote Coders Team">
<title>Remote Coders - THM Walkthroughs</title>
<link rel="shortcut icon" href="res/web_icon.png">
<!-- Custom styles -->
<link href="css/style.css" rel="stylesheet">
<style>
.cover-container {
max-width: 100%;
}
h4 {
color: #BB86FC;
font-weight: bold;
font-size: 1.5rem;
}
.nav-link {
color: #BB86FC;
padding: 10px 15px;
font-size: 1.1rem;
}
.nav-link:hover {
color: #03DAC6;
text-decoration: none;
}
.glow-on-hover {
background-color: #BB86FC;
border: none;
padding: 10px 20px;
font-size: 1.2rem;
cursor: pointer;
border-radius: 8px;
transition: box-shadow 0.3s ease;
}
.glow-on-hover:hover {
box-shadow: 0 0 20px #BB86FC, 0 0 30px #03DAC6;
}
img {
border-radius: 8px;
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
margin-bottom: 20px;
}
blockquote {
padding: 10px 15px;
background-color: #333333;
border-left: 5px solid #BB86FC;
margin-bottom: 20px;
color: #E0E0E0;
}
h1, h2 {
color: #03DAC6;
}
h3 {
color: #BB86FC;
}
</style>
</head>
<body class="d-flex h-100 text-center text-white bg-dark">
<div class="cover-container d-flex w-100 h-100 p-3 mx-auto flex-column">
<header class="mb-auto">
<div class="nav-container">
<h3 class="float-md-start mb-0">Remote Coders</h3>
<button class="hamburger" onclick="toggleMenu()">☰</button> <!-- Hamburger icon -->
<nav class="nav nav-masthead justify-content-center float-md-end" id="navLinks">
<a class="nav-link" href="index.html">Home</a>
<a class="nav-link" href="blogs.html">Blogs</a>
<a class="nav-link active" aria-current="page" href="tryhackme.html">THM Walkthroughs</a>
<!-- <a class="nav-link" href="partners.html">Partners</a> -->
<!-- <a class="nav-link" href="supporters.html">Supporters</a> -->
<a class="nav-link" href="contact us.html">Contact Us</a>
<a class="nav-link" href="about us.html">About Us</a>
</nav>
</div>
</header>
<main>
<button class="glow-on-hover" type="button" onclick='window.location.href ="tryhackme.html"'>
<span>Go Back</span>
</button>
<h2>TRYHACKME Advent of Cyber 2022 WALKTHROUGHS</h2>
<h5>Written by Silent Programmer</h5>
<img src="res/aoc2022v2.png" alt="THM Walkthrough Cover Image" width="95%">
<h1>[Day 1] Frameworks: Someone's coming to town!</h1>
<img src="res/aoc1.png" alt="Day 1 Screenshot" width="95%">
<h3>Question 1:</h3>
<blockquote>Who is the adversary that attacked Santa's network this year?</blockquote>
<h3>Answer:</h3>
<blockquote>The Bandit Yeti!</blockquote>
<h2>Let's start solving the puzzles:</h2>
<img src="res/day1_img1.png" alt="Puzzle 1" width="95%">
<img src="res/day1_img2.png" alt="Puzzle 2" width="95%">
<img src="res/day1_img3.png" alt="Puzzle 3" width="95%">
<h2>Here is your flag:</h2>
<img src="res/day1_img4.png" alt="Flag" width="95%">
<h3>Question 2:</h3>
<blockquote>What's the flag that they left behind?</blockquote>
<h3>Answer:</h3>
<blockquote>THM{IT'S A Y3T1 CHR1$TMA$}</blockquote>
<h1>[Day 1 Completed]</h1>
</main>
<script src="https://apps.elfsight.com/p/platform.js" defer></script>
<div class="elfsight-app-b26e821f-085b-40cd-8628-f339c90e883b"></div>
<footer class="mt-auto">
© 2022 Remote Coders (A Community for Hackers and Programmers)<br>by - Tanmay Tiwari
</footer>
</div>
<script src="index.js"></script>
</body>
</html>