-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.php
130 lines (119 loc) · 5.09 KB
/
index.php
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
<!DOCTYPE html>
<html>
<head>
<title>CTF Web Challenge</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
</head>
<body>
<div class="container-fluid">
<h1 class="text-center">Can you finish all these challenges?</h1>
</div>
<br>
<br>
<br>
<br>
<!-- Challenge #1 -->
<div class="container-fluid">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Strcmp v1.0</h3>
</div>
<div class="panel-body">
Michael created a website where he store his secrets... Unfortunately, we cant login into his website.
Help me find michael's secret!.
</div>
<div class="panel-footer">
<a href="/admin/index.php" target="_blank" class="btn btn-success">Start here</a>
<a href="/admin/index.php?debug" target="_blank" class="btn btn-primary">Source code</a>
</div>
</div>
</div>
<!-- Challenge #2 -->
<div class="container-fluid">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Strcmp v2.0</h3>
</div>
<div class="panel-body">
Michael has stored a new secret in his website that the security has been upgraded, Can you repeat your action for finding michael's secret?
<br/>
<br/>
<strong>Note</strong>: Pay close <u>ATTENTION</u> to the Source Code
</div>
<div class="panel-footer">
<a href="/otp/index.php" target="_blank" class="btn btn-success">Start here</a>
<a href="/otp/index.php?debug" target="_blank" class="btn btn-primary">Source code</a>
</div>
</div>
</div>
<!-- Challenge #3 -->
<div class="container-fluid">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Crack The Hash</h3>
</div>
<div class="panel-body">
Do you like bounty hunting? So do i! I found this internal login of this multibillion company. This is a password only login, can you crack the pass?
</div>
<div class="panel-footer">
<a href="/crack/index.php" target="_blank" class="btn btn-success">Start here</a>
<a href="/crack/index.php?debug" target="_blank" class="btn btn-primary">Source code</a>
</div>
</div>
</div>
<!-- Challenge #4 -->
<div class="container-fluid">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Magic?</h3>
</div>
<div class="panel-body">
Ho ho ho it's magic you know~, I believe in <u>Magic</u>, How about you?.
</div>
<div class="panel-footer">
<a href="/magic/index.php" target="_blank" class="btn btn-success">Start here</a>
<a href="/magic/index.php?debug" target="_blank" class="btn btn-primary">Source code</a>
</div>
</div>
</div>
<!-- Challenge #5 -->
<div class="container-fluid">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Lucky numbers</h3>
</div>
<div class="panel-body">
Let's push your luck to the limit, guess the correct number and you will get the prize!
</div>
<div class="panel-footer">
<a href="/numeric/index.php" target="_blank" class="btn btn-success">Start here</a>
<a href="/numeric/index.php?debug" target="_blank" class="btn btn-primary">Source code</a>
</div>
</div>
</div>
<!-- Challenge #6 -->
<div class="container-fluid">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Bypass like a 1337</h3>
</div>
<div class="panel-body">
I'm starting to believe that a there is no true 1337 any more, are you worth it or not?
<br>
<br>
Prove your self.
</div>
<div class="panel-footer">
<a href="/bypass/index.php" target="_blank" class="btn btn-success">Start here</a>
<a href="/bypass/index.php?debug" target="_blank" class="btn btn-primary">Source code</a>
</div>
</div>
</div>
<script
src="https://code.jquery.com/jquery-3.1.1.min.js"
integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<p class="text-center">Challenge Created by <a href=https://github.com/HightechSec>Hightech</a></p>
</body>
</html>