-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
104 lines (102 loc) · 3.83 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>
<head>
<meta charset="utf-8">
<title>Lord Of The Inputs</title>
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="bootstrap/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="style/style.css">
<script src="jquery/jquery-2.1.4.min.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
<script src="highcharts/highcharts.js"></script>
<script src="highcharts/treemap.js"></script>
<script src="app/app.js"></script>
<script src="app/onload.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-sm-1"></div>
<div class="col-sm-10">
<div class="row">
<div class="col-sm-4">
<h2 style="font-family:Impact, Charcoal, sans-serif">Lord of The Inputs</h2>
</div>
<div class="col-sm-8">
<div style="font-size:12px;font-style:italic;text-align:right;padding-top:38px;">
<a href="http://www.guvenlikod.com/">Courtesy of www.guvenlikod.com</a>
</div>
</div>
</div>
</div>
</div>
<div class="row" style="margin-bottom: 10px;">
<div class="col-sm-1"></div>
<div class="col-sm-10">
<span style="font-size:12px;">
Lord of the Inputs - LOTI ;) is an online & interactive learning resource for developers whose input-aware applications
are targeted both by attackers and everyday users. None of the input control strategies are really silver-bullets for preventing cyber attacks. They are critical but also hard to implement correctly. So scope-aware, in other words, input type-aware input controls should be pursued... Long story short, write your regular expression and make everything green!
</span>
</div>
</div>
<div class="row">
<div class="col-sm-1"></div>
<div class="col-sm-8">
<div class="inputgroup">
<form class="form-horizontal">
<div class="form-group">
<label class="col-sm-3 control-label">Input Regex</label>
<div class="col-sm-8">
<input name="regex" data-toggle="tooltip" title="No flags and / characters" class="form-control" id="regex" type="text" placeholder="Write a regular expression here to rule it all!">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">Control Strategy</label>
<div class="col-sm-3">
<select class="form-control" id="strategy">
<option value="0" selected="selected">Blacklist</option>
<option value="1">Whitelist</option>
</select>
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">Input Type</label>
<div class="col-sm-3">
<select class="form-control" id="inputtypes">
<option value="0" selected="selected">Generic</option>
<option value="1">Attack</option>
<option value="2">Email</option>
<option value="3">Credit Card</option>
<option value="4">Username</option>
<option value="5">Full Name</option>
<option value="6">Password</option>
<option value="7">Phone Number</option>
<option value="8">URL</option>
<option value="9">Date</option>
<option value="10">TCK No</option>
<option value="11">File Name</option>
<option value="12">IP</option>
<option value="13">Country</option>
<option value="14">Search</option>
<option value="15">Comment</option>
</select>
</div>
</div>
</form>
</div>
</div>
<div class="col-sm-2">
<div class="score">
Score
<br/>
<span id="score">0</span>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-1"></div>
<div class="col-sm-10" id="container"></div>
</div>
</div>
</body>
</html>