-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
46 lines (37 loc) · 1.12 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
<!doctype html>
<html>
<head>
<meta charset="utf-8"/>
<title>CapFile</title>
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>
<h1>CapFile.js</h1>
<p>Test cracking WPA 4-way handshake (TKIP):
<input type="button" id="test1" value="Run test" />
<p>Test cracking WPA2 4-way handshake (CCMP):
<input type="button" id="test2" value="Run test" />
<p>Debug output:
<p><textarea id="debug" cols="80" rows="20"></textarea>
<p>Load Pcap capture file:
<input type="file" id="fileChooser" />
<table>
<thead>
<th></th>
<th class="index">#</th>
<th>Timestamp</th>
<th>Source MAC</th>
<th>Dest. MAC</th>
<th>Bytes</th>
<th>Packet Type</th>
</thead>
<tbody id="capfileBody">
</tbody>
</table>
<pre id="result"></pre>
<script type="text/javascript" src="crypto-js.js"></script>
<script type="text/javascript" src="Crack.js"></script>
<script type="text/javascript" src="CapFile.js"></script>
<script type="text/javascript" src="Main.js"></script>
</body>
</html>