-
Notifications
You must be signed in to change notification settings - Fork 2
/
rules.html
142 lines (124 loc) · 6.09 KB
/
rules.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="it">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>PoliCTF 2015</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Inconsolata|Titillium+Web:400,700' rel='stylesheet' type='text/css'>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<script type="text/javascript" src="js/codef_core.js"></script>
<script type="text/javascript" src="js/codef_starfield.js"></script>
<script type="text/javascript" src="js/codef_scrolltext.js"></script>
<script type="text/javascript" src="js/codef_3d.js"></script>
<script type="text/javascript" src="js/scroller_text.js"></script>
<script type="text/javascript" src="js/glfx.js"></script>
<script type="text/javascript" src="js/pt.js"></script>
<script type="text/javascript" src="js/obj.js"></script>
<script type="text/javascript" src="js/demo.js"></script>
<script>
function fullscr(elemId) {
var elem = document.getElementById(elemId);
if (elem.requestFullscreen) {
elem.requestFullscreen();
} else if (elem.mozRequestFullScreen) {
elem.mozRequestFullScreen();
} else if (elem.webkitRequestFullScreen) {
elem.webkitRequestFullScreen(Element.ALLOW_KEYBOARD_INPUT);
}
}
window.addEventListener('load', initDemo, false);
</script>
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<span class="navbar-brand"><a href="http://polictf.it"><img src="images/logo.png" /><span>PoliCTF</span>2015</a></span>
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li>
<a href="instructions">Instructions</a>
</li>
<li>
<a href="javascript:openmodalnews()">News</a>
</li>
<!-- <li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Registration <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="registration">Register</a></li>
<li><a href="http://s.maggi.cc/polictf2015-local" target="_blank">PoliMi students</a></li>
</ul>
</li>-->
<li>
<a href="mailto:[email protected]"><span class="glyphicon glyphicon-envelope"></span></a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container">
<div>
<h1>Rules</h1>
<ul>
<li>No limitations on team size</li>
<li>NO solution sharing is allowed</li>
<li>Attacking our infrastructure is prohibited (only attack designated services)</li>
<li>Attacking other teams is prohibited</li>
<li>Do not DOS, it will result in an immediate ban.</li>
<li>Should you find any vulnerability/bug in our scoreboard or infrastructure please report it to us, bonus points will be awarded</li>
<li>If yout think you've got a valid flag but the scoreboard is not accepting it please contact us.</li>
<li>The first 3 solvers for challenges get bonus points. 6%, 4% and 2% of the challenge value.</li>
<li>TowerOfHanoi affiliated individuals or groups cannot claim prizes</li>
<li>to claim prizes you will need to have a valid point-of-contact</li>
</ul>
</div>
<div class="modal fade" id="news_tweets">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-body">
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
</div>
<footer class="footer">
<div class="container">
<p class="text-muted">Competition organized by the research groups of <a href="http://www.necst.it">NECSTLab</a> and supported by the CINI Cyber Security National Lab <span class="pull-right">~ design: <a href="https://github.com/JWuCines">JWuCines</a> & <a href="https://twitter.com/_ocean">ocean</a> || 3d logo: <a href="https://it.linkedin.com/pub/ilaria-scarcia/25/686/510/en">Ila9</a></span></p>
</div>
</footer>
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<script>
$('.nolink').popover().click(function () {
setTimeout(function () {
$('.nolink').popover('hide');
}, 5000);
});
news_tweets_loaded = false;
$("#news_tweets").on('shown.bs.modal', function() {
if(!news_tweets_loaded) {
$(this).find(".modal-content").load( "news.html" );
news_tweets_loaded = true;
}
})
function openmodalnews(){
$('#news_tweets').modal()
}
</script>
</body>
</html>