-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstruction.tpl
46 lines (43 loc) · 1.82 KB
/
instruction.tpl
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
<div class="row">
<div class="col-xs-12">
<h1>Challenge: Password - Hidden password</h1>
<h3>Goal</h3>
<p>Try to login as Mary by guessing her credentials (user name: mary)</p>
<ul class="nav nav-tabs" role="tablist">
<li role="presentation" class="active">
<a href="#guideline" aria-controls="guideline" role="tab" data-toggle="tab">Guideline</a>
</li>
<li role="presentation">
<a href="#solution" aria-controls="solution" role="tab" data-toggle="tab">Solution</a>
</li>
</ul>
<div class="tab-content">
<div role="tabpanel" class="tab-pane active" id="guideline">
<ul class="list-group">
<li class="list-group-item">
Read the source code through browser's developer tool
</li>
<li class="list-group-item">
Look for anything hidden in the form which is useful
for you to guess the password
</li>
</ul>
</div>
<div role="tabpanel" class="tab-pane" id="solution">
<ul class="list-group">
<li class="list-group-item">
Read the source code through browser's developer tool
</li>
<li class="list-group-item">
Find out an hidden input field with password in
plaintext format
</li>
<li class="list-group-item">
After looking at the hidden value, you know the
password is helloworld
</li>
</ul>
</div>
</div>
</div>
</div>