-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
385 lines (358 loc) · 12.4 KB
/
index.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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>QCTF - A cyber security capture the flag event at Queen's University</title>
<meta name="keywords" content="cyber, security, capture the flag, CTF, Queen's University, event " />
<meta name="description" content="A cyber security capture the flag event at Queen's University" />
<meta name="author" content="Queen's CTF (QCTF) team">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Varela+Round" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
<link rel='stylesheet' href='https://fonts.gstatic.com'>
<link rel='stylesheet' href='https://fonts.googleapis.com/css2?family=Work+Sans:wght@500&display=swap'>
<link href="default.css" rel="stylesheet" type="text/css" media="all" />
<link href="fonts.css" rel="stylesheet" type="text/css" media="all" />
<link href="qctf.css" rel="stylesheet" type="text/css" media="all" />
<link href="responsive.css" rel="stylesheet" type="text/css" media="all" />
<link rel="icon" type="image/png" href="images/icon.png"/>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-GT7G2ZB7CV"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-GT7G2ZB7CV');
</script>
</head>
<body>
<div id="logo">
<span > <img src="images/QTCF_Transparent_Logo_cropped.png" alt="QCTF LOGO" class='logo'></span>
<span><p>A cyber security capture the flag event at Queen's University </p></span>
<span><p>Virtually on November 20th, 2021 from 10am-10pm</p></span>
</div>
<div id="menu">
<ul>
<li class="current_page_item"><a href="#what-is-a-ctf" title="">What's a CTF?</a></li>
<!-- <li><a href="#exec-join-us" title="">Join Our Team</a></li> -->
<li><a href="#about-us" title="">About Us</a></li>
<li><a href="#contact-us" title="">Contact Us</a></li>
<li><a href="#sponsor-us" title="">Sponsorship</a></li>
<li><a href="#walkthroughs" title="">Walkthroughs</a></li>
</ul>
</div>
<div id="sign-up-panel">
<div class="container text-center">
<div class="text-center title">
<h2>Competition Results</h2>
</div>
<p> Thank you to everyone that attended and partipated in Queen's CTF! We hope to see you again next year. </p>
<p> Checkout results of the Competition below: </p>
<div id="wealthsimple-button" >
<a class='button2' href="pdf/QCTF_2021_Scoreboard.pdf">2021 Results</a>
</div>
</div>
</div>
<div id="what-is-a-ctf">
<div class="container text-center">
<div class="text-center title">
<h2>What is a CTF</h2>
</div>
<p>
A CTF (Capture The Flag) is an information security competition where
contestants solve a variety of tasks to find the hidden “Keys”.
</p>
<p>
In a Jeopardy-style CTF like QCTF,
these keys are found in a variety of challenges across many different fields of computer science.
Below are some the categories you might encounter.
</p>
</div>
<div class="hackermans">
<div class="thin hackermans-box flex-row">
<div class="box">
<span class="icon icon-wrench"></span>
<h3>Reverse Engineering</h3>
<p>Exploiting a binary file to make it behave unexpectedly</p>
</div>
<div class="box">
<span class="icon icon-pencil"></span>
<h3>Steganography</h3>
<p>Finding information hidden in text, files, or images</p>
</div>
<div class="box">
<span class="icon icon-lock"></span>
<h3>Cryptography</h3>
<p>Decrypting or encrypting a piece of data</p>
</div>
<div class="box">
<span class="icon icon-trophy"></span>
<h3>Information Gathering</h3>
<p>Finding obscure information and data on the internet</p>
</div>
<div class="box">
<span class="icon icon-globe"></span>
<h3>Web Exploitation</h3>
<p>Exploiting web pages to find a flag</p>
</div>
<div class="box">
<span class="icon icon-cloud"></span>
<h3>Remote Exploitation</h3>
<p>Exploiting a server or remote service to find a flag</p>
</div>
</div>
</div>
</div>
<div id="about-us">
<div class="container">
<div class="text-center title">
<h2>About Us</h2>
</div>
<p>
The Queen’s Capture the Flag is an annual event run in partnership with the Queen’s Engineering Society
that allows Queen’s University students interested in cybersecurity
and other fields of computing and information technology to learn technical skills through friendly competition.
This hands-on experience provides a space for participants to learn and practice
skills seldom taught in academia or other extracurricular events.
</p>
<p>
Details for the QCTF 2021-2022 are still in the works... <br \>
Feel free to join our
<a href="https://forms.gle/xemr48wSHmXXctcQ9">Mailing List</a>
and follow us on <a href="#contact-us">Social Media!</a>
</p>
<p class="gap">
QCTF operates as a ratified conference
under the Engineering Society at Queen's University.
For additional details, please check out the
<a href="pdf/constitution.pdf">QCTF Constitution</a>.
</p>
<p class="gap">
Check our promo video for 2021-2022 below:
</p>
<div class="video-container">
<video class="flex-row video" controls poster="cover_picture.png" >
<source src="QCTF Eng Day Video 2.0.1.mp4" type="video/mp4">
Sorry, your browser doesn't support this type of video.
</video>
</div>
</div>
</div>
<div id="sponsor-us" class="container">
<div class="text-center title">
<h2>
Sponsorship
</h2>
</div>
<p class="text-center">
Sponsorship can take the form of
monetary donations, competition prize donations, hardware donations,
or even offering to host parts of the ctf infrastructure.
Read our
<a href="pdf/QCTF-Sponsorship-Package-2021-2022.pdf">Sponsorship Package</a>
or contact us for more information.
</p>
<div class="thin hackermans-box">
<h3>Sponsors may recieve:</h3>
<ul>
<li>Access to participants opt-in resume bank </li>
<li>Ability to network with undergraduate students in Computer Science and Computer Engineering programs</li>
</ul>
</div>
</div>
<div class="hackermans">
<div id="walkthroughs">
<div class="hackermans-box container">
<div class="text-center title">
<h2>Challenge Walkthroughs</h2>
</div>
<p class="text-center">
Solutions to interesting and difficult challenges
from past QCTFs are available here:
</p>
<br>
<center>
<a class='button2' href="walkthrough/crossword">Crossword</a>
<a class='button2' href="pdf/Bets.pdf">Bets</a>
<a class='button2' href="pdf/Decrypt.pdf">Decrypt</a>
<a class='button2' href="pdf/Descramble.pdf">Descramble</a>
<a class='button2' href="pdf/PussInBoots.pdf">Puss In Boots</a>
<a class='button2' href="pdf/RomanticMoment.pdf">Romantic Moment</a>
</center>
</div>
</div>
</div>
<div id="exec-team">
<div class="container">
<div class="text-center title">
<h2>Exec Team 2021-2022 </h2>
</div>
<div class="flex-row">
<div class="person">
<div id="identity">
<h3>Raed Fayad</h3>
<h4>Chair</h4>
</div>
<img
alt="Raed Fayed"
class="circle" src="images/people/raed_cropped.jpg" />
</div>
<div class="person">
<div class="identity">
<h3>James Kidd</h3>
<h4>Director of Sponsorship</h4>
</div>
<img alt="James Kidd"
class="circle" src="images/people/james.jpg" />
</div>
<div class="person">
<div class="identity">
<h3>Andrew Fryer</h3>
<h4>Infrastructure Manager</h4>
</div>
<img
alt="Andrew Fryer"
class="circle" src="images/people/andrew.png" />
</div>
<div class="person">
<div class="identity">
<h3>Irum Shah</h3>
<h4>Infrastructure Manager</h4>
</div>
<img
alt="Irum Shah"
class="circle" src="images/people/irum.jpg" />
</div>
<div class="person" id="miranda">
<div class="identity">
<h3>Miranda Bundgård</h3>
<h4>Treasurer</h4>
</div>
<img alt="Miranda Bundgård"
class="circle" src="images/people/miranda.jpg" />
</div>
<div class="person" id="timothy">
<div class="identity">
<h3>Timothy Byles-Ho</h3>
<h4>Logistics Coordinator</h4>
</div>
<img alt="QCTF logo"
class="circle" src="images/QTCF_Transparent_Logo_square_white_v3.png" />
</div>
<div class="person">
<div class="identity">
<h3>Adrienne Lee</h3>
<h4>Director of Challenges</h4>
</div>
<img alt="Adrienne Lee"
class="circle" src="images/people/adrienne.jpg" />
</div>
<div class="person">
<div class="identity">
<h3>Cyrus Fung</h3>
<h4>Challenge Coordinator</h4>
</div>
<img alt="QCTF logo"
class="circle" src="images/QTCF_Transparent_Logo_square_white_v3.png" />
</div>
<div class="person">
<div class="identity">
<h3>Abbey Cameron</h3>
<h4>Challenge Coordinator</h4>
</div>
<img alt="Abbey Cameron"
class="circle" src="images/people/abbey.jpg" />
</div>
<div class="person">
<div class="identity">
<h3>Aniket Mukherjee</h3>
<h4>Challenge Coordinator</h4>
</div>
<img alt="Aniket Mukherjee"
class="circle" src="images/people/aniket.jpg" />
</div>
<div class="person">
<div class="identity">
<h3>Jordan Capello</h3>
<h4>Challenge Coordinator</h4>
</div>
<img alt="Jordan Capello"
class="circle" src="images/people/jordan.png" />
</div>
<div class="person">
<div class="identity">
<h3>Noah Jacobs</h3>
<h4>Challenge Coordinator</h4>
</div>
<img alt="QCTF logo"
class="circle" src="images/QTCF_Transparent_Logo_square_white_v3.png" />
</div>
<div class="person">
<div class="identity">
<h3>Yujin Cho</h3>
<h4>Director of Marketing</h4>
</div>
<img
alt="Yujin Cho"
class="circle" src="images/people/yujin.jpg" />
</div>
<div class="person">
<div class="identity">
<h3>Sophie Ellwood</h3>
<h4>Marketing and Promotion Coordinator</h4>
</div>
<img
alt="Sophie Ellwood"
class="circle" src="images/people/sophie.jpg" />
</div>
<div class="person">
<div class="identity">
<h3>Debbie Wang</h3>
<h4>Marketing and Promotion Coordinator</h4>
</div>
<img
alt="Debbie Wang"
class="circle" src="images/people/debbie.jpg" />
</div>
<div class="person">
<div class="identity">
<h3>Raihan Ahmed</h3>
<h4>First Year Representative</h4>
</div>
<img alt="Shams Sultan"
class="circle" src="images/people/raihan.jpg" />
</div>
<div class="person">
<div class="identity">
<h3>Emily Batty</h3>
<h4>First Year Representative</h4>
</div>
<img alt="Shams Sultan"
class="circle" src="images/people/emily.jpeg" />
</div>
</div>
</div>
<div id="contact-us" class="footer">
<span class="inline-block">
<a class="block" href="mailto:[email protected]">
</a>
<a class="block" href="mailto:[email protected]">
</a>
</span>
<a
href="https://www.instagram.com/queens_ctf/"
class="icon icon-instagram" aria-hidden="true" title="Instagram">
<span>Instagram</span></a>
<a
href="https://www.facebook.com/QueensCTF"
class="icon icon-facebook" aria-hidden="true" title="Facebook">
<span>Facebook</span></a>
<a
href="https://www.linkedin.com/company/queen-s-capture-the-flag-qctf"
class="icon icon-linkedin">
<span>LinkedIn</span></a>
</div>
</body>
</html>