-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinit.html
More file actions
65 lines (65 loc) · 1.8 KB
/
init.html
File metadata and controls
65 lines (65 loc) · 1.8 KB
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
<html>
<head>
<title>BREACH by Cookie Injection</title>
<script src='/?type=jquery'></script>
<script src='/?type=app'></script>
<style>
table {
border: 1px solid #aaa;
border-collapse: collapse;
}
table td {
border: 1px solid #dadada;
}
.progress {
height: 10px;
width: 0px;
background-color: #99c9fb;
}
.log {
height: 200px;
overflow: scroll;
}
.back {
margin: 10px;
}
</style>
</head>
<body>
<div class='back'>
<a href='/'>Back</a>
</div>
<table style='width: 100%'>
<tbody>
<tr style='height: 30px;'>
<td style='width: 80px'>
Token:
</td>
<td class='knowntoken'>
</td>
</tr>
<tr style='height: 30px;'>
<td style='width: 80px'>
Winner:
</td>
<td class='winner'>
</td>
</tr>
<tr style='height: 200px;'>
<td style='width: 80px'>
Detail:
</td>
<td>
<div class='log'></div>
</td>
</tr>
<tr style='height: 10px;'>
<td colspan='2'>
<div class='progress'>
</div>
</td>
</tr>
</tbody>
</table>
</body>
</html>