-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
104 lines (94 loc) · 5.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=768">
<title>CODE BLUE CTF 2020</title>
<link href="https://fonts.googleapis.com/css?family=Orbitron" rel="stylesheet">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/cover.css" rel="stylesheet">
<link href="css/codeblue.css?_1572628710" rel="stylesheet">
</head>
<body>
<div class="site-wrapper">
<div class="site-wrapper-inner">
<div class="cover-container">
<div class="inner cover">
<h1 class="cover-heading"><img src="images/codeblue_ctf_logo.png" alt="CODE BLUE CTF"></h1>
<div class="lead alert alert-danger">
CODE BLUE CTF 2020 has officially been canceled.
</div>
<div class="section">
<h2 class="heading">Updates (2022/11/02)</h2>
</div>
<div class="description">
<p class="lead">
First, we really apologize for this situation. CODE BLUE CTF 2020 hasn't been held yet due to several unexpected reasons including COVID-19 stuff.
</p>
<p class="lead">
Though 2 years have passed, COVID things are slightly calmed down that some overseas trips are allowed.<br>
Situations about CODE BLUE CTF organizers have been changed as well, they cannot hold CODE BLUE CTF still.<br>
Then we decided to invite top team to the CODE BLUE conference 2022 through discussions with CODE BLUE admins, as the winning prize.
</p>
<p class="lead">
We invited some players of team D0G$ to CODE BLUE 2022 last month, as a winner of TokyoWesterns CTF 6th 2020.
</p>
<p class="lead">
Apologies again for teams looking forward to play CODE BLUE CTF.<br>
Stay tuned for the future of Bull's Eye. See you someday.
</p>
</div>
<h2 class="heading">2020</h2>
<div id="countdown" class="heading"></div>
<div class="date">Date: Canceled</p>
<div class="description">
<p class="lead">CODE BLUE is an international security conference held in Tokyo.</p>
<p class="lead">In 2017, CODE BLUE started to organize its own CTF.<br>
binja and TokyoWesterns take on the role of problem setting again this year.<br>
They are going to hold the Final Round with neither Jeopardy nor Attack & Defence,<br>
but the original rule called <strong>Bull's Eye</strong>.<br>
Don't miss it!
<a href="/bullseye/" class="bullseye btn">Bull's Eye</a><br>
</p>
<p class="lead">
Twitter: <a href="https://twitter.com/codeblue_ctf" target="_blank">@codeblue_ctf</a>
</p>
</div>
</div>
<div class="section">
<h2 id="finals" class="heading">Finals</h2>
<p class="notes">*We will invite the following teams to CODE BLUE CTF 2020 Finals</p>
<div class="container">
<ol>
<li>Top 10 teams in TokyoWesterns CTF 6th 2020</li>
</ol>
</div>
</div>
<div class="section" id="archive">
<h2 class="heading">Archive</h2>
<a href="/archive/2019/" class="archive btn">2019</a>
<a href="https://github.com/codeblue-ctf/codeblue-2018/blob/master/result-en.md" class="archive btn">2018 Finals</a>
<a href="/archive/quals-2018/" class="archive btn">2018 Quals</a>
<a href="/archive/2017/" class="archive btn">2017</a>
</div>
<div class="footer">
<div class="inner">
<p>Organized by <a href="https://ctftime.org/team/9083" target="_blank">binja</a> and <a href="https://ctftime.org/team/12599" target="_blank">TokyoWesterns</a> with <a href="https://codeblue.jp/" target="_blank">CODE BLUE</a></p>
</div>
</div>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.countdown.min.js"></script>
<script>
$(function () {
$('#countdown').countdown('2018/11/01 10:00:00 +0900', function(event) {
//$(this).html(event.type == 'finish' ? 'Finished' : event.strftime('%Ddays %H:%M:%S'));
});
});
</script>
</body>
</html>