-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
58 lines (56 loc) · 1.19 KB
/
popup.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
<!DOCTYPE html>
<html>
<head>
<title>SQL INJECTOR EXTENSION</title>
<script src='libs/jquery.min.js'></script>
<script src='libs/URI.js'></script>
<script src='popup.js'></script>
<style>
#urlInput {
width: 400px
}
.submit {
text-align: right
}
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
width: 500px
}
/
.info, .success, .warning, .error, .validation {
border: 1px solid;
margin: 3px 0px;
padding: 5px 5px 5px 5px;
background-repeat: no-repeat;
background-position: 10px center;
}
.info {
color: #00529B;
background-color: #BDE5F8;
}
.success {
color: #4F8A10;
background-color: #DFF2BF;
}
.warning {
color: #9F6000;
background-color: #FEEFB3;
}
.error {
color: #D8000C;
background-color: #FFBABA;
}
</style>
</head>
<body>
<a id="currentAnchor" href="#">Get opened tab's url</a>
<form>
<label for="urlInput">URL for SQL injection</label>
<input type="text" id="urlInput" />
<input type="button" id="inject_button" value="Inject">
</form>
<div id="error" class="error"></div>
<div id="msg" class="success"></div>
</body>
</html>