-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBigRedCTF.html
More file actions
executable file
·131 lines (114 loc) · 4.19 KB
/
BigRedCTF.html
File metadata and controls
executable file
·131 lines (114 loc) · 4.19 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>BigRed//CTF | Cornell Hacking Club</title>
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/chc.css" id="theme">
</head>
<body>
<div class="reveal">
<div class="slides">
<section>
<h1>BigRed//CTF</h1>
<p>Cornell Hacking Club</p>
</section>
<section>
<h2>Agenda</h2>
<ol>
<li>Quick Info</li>
<li>What is a CTF?</li>
<li>Challenges</li>
<li>Event Details</li>
<li>Start Time!</li>
</ol>
</section>
<section>
<h2>Quick Info</h2>
<ul>
<li>Please join
<b>#CHC</b> on the slack for updates and support</li>
<li>These slides will be available there</li>
<li>
<a href="https://chcctf.ddns.net">The CTF Website (chcctf.ddns.net)</a>
</li>
<li>
<a href="https://chc.cs.cornell.edu/tools">Useful Tools</a>
</li>
<li>
<a href="https://github.com/grabberthehacker/ctfResources">CTF Resources</a>
</li>
</ul>
</section>
<section>
<h2>Capture The Flag</h2>
<ul>
<li>This is a Jeopardy style CTF</li>
<li>Solve various challeges to get "flags"</li>
<li>Flags are strings in the format `CHC{. . .}`</li>
<li>Flags are worth different amounts of points</li>
<li>High score wins.</li>
</ul>
</section>
<section>
<h2>Challege Types</h2>
<ul>
<li>Reverse Engineering</li>
<li>Pwnable</li>
<li>Cryptography</li>
<li>Steganography</li>
<li>Web Exploitation</li>
<li>Programming</li>
<li>And more</li>
</ul>
</section>
<section>
<h2>Challenges</h2>
<ul>
<li>Some will tell you what you need to do
<ul>
<li>Decrypt a string with a description hinting at how it’s encrypted</li>
</ul>
</li>
<li>Others are less obvious
<ul>
<li>A CHC member seems to have lost the flag for this challenge. Can you git it for us? </li>
<li>(No links provided)</li>
</ul>
</li>
</ul>
</section>
<section>
<h2>Challenges</h2>
<ul>
<li>Feel free to jump around and work on whatever catches your interest!</li>
<li>Point value scales with difficulty</li>
</ul>
</section>
<section>
<h2>Event Specific Details</h2>
<ul>
<li>Four people team maximum </li>
<li>Ties are settled by who reached a score first </li>
<li>First teams to complete any given challenge get bonus points.</li>
</ul>
</section>
<section>
<h2>The End</h2>
<ul>
<li>
<a href="https://chcctf.ddns.net">The CTF Website (chcctf.ddns.net)</a>
</li>
<li>Remember to join
<b>#CHC</b>
</li>
<li>Challenge opening soon</li>
</ul>
</section>
</div>
<script src="js/reveal.js"></script>
<script>
Reveal.initialize();
</script>
</body>
</html>