forked from bsideswpg/bsideswpg.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathctf.html
More file actions
18 lines (18 loc) · 635 Bytes
/
ctf.html
File metadata and controls
18 lines (18 loc) · 635 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!doctype html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta http-equiv="refresh" content="2;url=https://bsides2017-awsctf.s3.amazonaws.com/index.html">
<script language="javascript">
window.setTimeout(function (){
window.location.href = "https://bsides2017-awsctf.s3.amazonaws.com/index.html"
},
2000
);
</script>
<title>Redirecting to the BSidesWpg 2017 CTF</title>
</head>
<body>
Welcome! If you are not redirected automatically, follow this <a href='https://bsides2017-awsctf.s3.amazonaws.com/index.html'>link to the BSidesWpg CTF!</a>
</body>
</html>