-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (68 loc) · 1.98 KB
/
index.html
File metadata and controls
68 lines (68 loc) · 1.98 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
66
67
68
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<!-- meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'"> <!-- -->
<title>Whaticket Websocket Exploit</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id='header'>
<div id='headerMessages'>Messages</div>
<div id='headerContacts'>Contacts</div>
</div>
<div id='headerOthers'>Other socket messages</div>
<div id='split'>
<div id='spyMessages'></div>
<div id='spyContacts'></div>
</div>
<div id='spyOthers'>
</div>
<div id='copyright'>
Whaticket websocket exploit by Claudemir Todo Bom - use it responsibly
</div>
<div id="modalbackdrop">
</div>
<div id="inputbox">
<p>Information about service to be tested</p>
<table>
<tr>
<td class="formlabel"><label for="backend_host">Backend hostname</label></td>
<td><input id="backend_host" type="text"
placeholder="backend_host:port"></td>
</tr>
<tr>
<td colspan="2">
<strong>Optional parameters:</strong>
</td>
</tr>
<tr>
<td class="formlabel"><label for="frontend_host">Frontend hostname</label></td>
<td><input id="frontend_host" type="text"
placeholder="frontend_host:port"></td>
</tr>
<tr>
<td class="formlabel"><label for="login">Login</label></td>
<td><input id="login" type="text" placeholder="login"></td>
</tr>
<tr>
<td class="formlabel"><label for="password">Password</label></td>
<td><input id="password" type="password" placeholder="password"></td>
</tr>
<tr>
<td class="formlabel"><label for="enable_ssl">Enable SSL</label></td>
<td><input id="enable_ssl" type="checkbox" checked></td>
</tr>
<tr>
<td colspan="2">
<div id="ok_line">
<div id="input_ok">Analyze</div>
</div>
</td>
</tr>
</table>
</div>
</body>
<script src="./WhaticketSocketExploit.js"></script>
</html>