-
Notifications
You must be signed in to change notification settings - Fork 0
/
aoc2023.html
266 lines (226 loc) · 8.65 KB
/
aoc2023.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
<!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 Community">
<meta name="generator" content="Hugo 0.84.0">
<title>Remote Coders</title>
<link rel="shortcut icon" href="res/web_icon.png">
<link href="CSS/style.css" rel="stylesheet">
<style>
/* General Styles */
body {
background-color: #1a1a1a;
color: #ffffff;
font-family: 'Poppins', sans-serif;
}
.cover-container {
max-width: 100%;
padding: 20px;
}
/* Navbar */
.nav-container {
display: flex;
justify-content: space-between;
align-items: center;
}
h3 {
color: #BB86FC;
}
.nav-link {
color: #BB86FC;
font-size: 1.1rem;
padding: 10px 15px;
text-transform: uppercase;
}
.nav-link:hover {
color: #03DAC6;
transition: 0.3s ease;
}
.hamburger {
background-color: transparent;
color: #BB86FC;
font-size: 2rem;
border: none;
cursor: pointer;
display: none;
}
@media (max-width: 768px) {
.hamburger {
display: block;
}
.nav {
display: none;
flex-direction: column;
text-align: left;
}
.nav-link {
display: block;
padding: 10px 0;
}
.nav.show {
display: flex;
}
}
/* Buttons */
.glow-on-hover {
background-color: #BB86FC;
border: none;
padding: 15px 25px;
font-size: 1.1rem;
color: #fff;
cursor: pointer;
border-radius: 10px;
transition: box-shadow 0.3s ease, transform 0.2s;
}
.glow-on-hover:hover {
box-shadow: 0 0 15px #BB86FC, 0 0 25px #03DAC6;
transform: scale(1.05);
}
/* Blockquotes */
blockquote {
background-color: #333;
border-left: 5px solid #BB86FC;
padding: 15px;
color: #E0E0E0;
font-size: 1.1rem;
margin-bottom: 20px;
border-radius: 5px;
}
/* Typography */
h1, h2, h3 {
color: #03DAC6;
font-weight: bold;
}
h5 {
color: #FF6F61;
}
h1.section-title {
color: black;
background-color: #03DAC6;
padding: 15px;
border-radius: 10px;
}
img {
border-radius: 10px;
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
margin-bottom: 20px;
}
/* Footer */
footer {
margin-top: 40px;
color: #aaaaaa;
font-size: 0.9rem;
text-align: center;
padding: 20px;
}
footer a {
color: #BB86FC;
text-decoration: none;
}
footer a:hover {
color: #03DAC6;
}
</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="contact us.html">Contact Us</a>
<a class="nav-link" href="about us.html">About Us</a>
</nav>
</div>
</header>
<br>
<button class="glow-on-hover" type="button" onclick='window.location.href ="tryhackme.html"'>
<span style="color: blueviolet;">Go Back</span>
</button>
<br>
<h2 style="color: #f58484;">TRYHACKME Advent of Cyber 2023 WALKTHROUGHS</h2>
<h5 align="left"> Written by Silent Programmer</h5>
<img src="res/aoc2023.png" alt="Advent of Cyber 2023" width="95%">
<h <h3>Answer 1:</h3>
<blockquote>[email protected]</blockquote>
<h3>Question 2:</h3>
<blockquote>What is the password for the IT server room door?</blockquote>
<h3>Answer 2:</h3>
<blockquote>BtY2S02</blockquote>
<h3>Question 3:</h3>
<blockquote>What is the name of McGreedy's secret project?</blockquote>
<h3>Answer 3:</h3>
<blockquote>Purple Snow</blockquote>
</div>
<h1 class="section-title">Day 1 Completed</h1>
<hr><br>
<h1 class="section-title">[Day 2] O Data, All Ye Faithful</h1>
<img src="res/aoc2023day2-header.png" alt="Day 2 Banner" width="95%">1 class="section-title">[Day 1] Chatbot, tell me, if you're really safe?</h1>
<img src="res/aoc2023day1-header.png" alt="Day 1 Banner" width="95%">
<div>
<div>
<h3>Question 1- </h3>
<blockquote style="background-color: grey;"> How many packets were captured (looking at the PacketNumber)?</blockquote>
<h3>Answer 1-</h3>
<blockquote style="background-color: grey;"> 100 </blockquote>
<h3>Question 2-</h3>
<blockquote style="background-color: grey;">
What IP address sent the most amount of traffic during the packet capture?</blockquote>
<h3>Answer 2-</h3>
<blockquote style="background-color: grey;"> 10.10.1.4 </blockquote>
<h3>Question 3-</h3>
<blockquote style="background-color: grey;">
What was the most frequent protocol?</blockquote>
<h3>Answer 3-</h3>
<blockquote style="background-color: grey;"> ICMP </blockquote>
<h1 style="color:black; background-color: cadetblue;">Day 2 Completed </h1> <br>
<br><hr><br>
<h1 style="color:black; background-color: cadetblue;">[Day 3] Hydra is Coming to Town</h1>
<img style="margin: 2%; padding: 5px;" width="95%" src="res/aoc2023day3-header.png"><br>
<div>
<div>
<h3>Question 1- </h3>
<blockquote style="background-color: grey;">
Using crunch and hydra, find the PIN code to access the control system and unlock the door. What is the flag?</blockquote>
<h3>Answer 1-</h3>
<blockquote style="background-color: grey;"> THM{pin-code-brute-force} </blockquote>
<h1 style="color:black; background-color: cadetblue;">Day 3 Completed </h1> <br>
</div>
</div>
<br><hr><br>
<h1 style="color:black; background-color: cadetblue;">[Day 4] Baby, it's CeWLd outside</h1>
<img style="margin: 2%; padding: 5px;" width="95%" src="res/aoc2023day4-header.png"><br>
<div>
<div>
<h3>Question 1- </h3>
<blockquote style="background-color: grey;"> What is the correct username and password combination? Format username:password
</blockquote>
<h3>Answer 1-</h3>
<blockquote style="background-color: grey;"> isaias:Happiness </blockquote>
<h3>Question 2-</h3>
<blockquote style="background-color: grey;">
What is the flag?</blockquote>
<h3>Answer 2-</h3>
<blockquote style="background-color: grey;"> THM{m3rrY4nt4rct1crAft$} </blockquote><br>
<h1 style="color:black; background-color: cadetblue;">Day 4 Completed </h1> <br>
<br><hr><br>
<script src="https://static.elfsight.com/platform/platform.js" data-use-service-core defer></script>
<div class="elfsight-app-d407e955-e9f1-4799-afc9-9dabdf326686" data-elfsight-app-lazy></div>
<!-- <a href="Download center.html"><button class="glow-on-hover" type="button">Download Center</button></a> -->
<br>
<!-- <a href="Download center.html" class="btn btn-lg btn-secondary fw-bold border-white bg-white">Download Center</a> -->
<footer class="mt-auto text-white-50">
© 2022 Remote Coders(A Community for Hackers and Programmars) <br> by - Tanmay Tiwari
<br>
</footer>
</div>
<script src=index.js></script>
</body>
</html>