forked from AlexLynd/ESP-Bug
- Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·104 lines (99 loc) · 5.27 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>
<title>Remote ESP Bug</title>
<metaname="viewport" content="width=device-width, initial-scale=1">
<metacharset="UTF-8">
<linkrel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<!-- <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script> -->
<scriptsrc="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<scriptsrc="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<scriptsrc="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<linkrel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.0/css/all.css" integrity="sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ" crossorigin="anonymous">
<linkrel="stylesheet" type="text/css" href="style.css">
</head>
<bodyonload="javascript:updateContent();">
<divclass="container">
<navclass="navbar navbar-expand-lg navbar-light bg-light">
<aclass="navbar-brand" href="#">Remote ESP Bug</a>
<buttonclass="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<spanclass="navbar-toggler-icon"></span>
</button>
<divclass="collapse navbar-collapse" id="navbarNav">
<ulclass="navbar-nav">
<liclass="nav-item active">
<aclass="nav-link" href="index.html">Scanner<spanclass="sr-only">(current)</span></a>
</li>
<liclass="nav-item">
<aclass="nav-link" href="settings.html">Settings</a>
</li>
<liclass="nav-item">
<aclass="nav-link" href="about.html">About</a>
</li>
</ul>
</div>
</nav>
<divclass="alert alert-success" role="alert" style="display:none">
ESP8266 connected and transmitting.
</div>
<divclass="alert alert-warning" role="alert" style="display:none">
ESP8266 inactive, attempting to reconnect. Information may be inaccurate.
</div>
<divclass="alert alert-danger" role="alert" style="display: none">
ESP8266 not connected, data unavailable at the moment.
</div>
<h3>Known Devices</h3>
<divclass="card scan">
<divclass="table-responsive">
<tableclass="table table-striped table-bordered">
<theadclass="thead-dark">
<tr>
<thscope="col">Name</th>
<thscope="col">BSSID</th>
<thscope="col">Manufacturer</th>
<thscope="col">RSSI</th>
</tr>
</thead>
<tbodyid="known"><!-- known devices here --></tbody>
</table>
</div>
</div>
<h3>Clients</h3>
<divclass="card scan">
<divclass="table-responsive">
<tableclass="table table-striped table-bordered">
<theadclass="thead-dark">
<tr>
<thscope="col">BSSID</th>
<thscope="col">Manufacturer</th>
<thscope="col">Channel</th>
<thscope="col">RSSI</th>
<thscope="col">Associated</th>
</tr>
</thead>
<tbodyid="clients"><!-- clients here --></tbody>
</table>
</div>
</div>
<h3>Networks</h3>
<divclass="card scan">
<divclass="table-responsive">
<tableclass="table table-striped table-bordered">
<theadclass="thead-dark">
<tr>
<thscope="col">BSSID</th>
<thscope="col">Manufacturer</th>
<thscope="col">ESSID</th>
<thscope="col">Channel</th>
<thscope="col">RSSI</th>
</tr>
</thead>
<tbodyid="networks"><!-- networks here --></tbody>
</table>
</div>
</div>
<scriptsrc="index.js"></script>
<pclass="text-center"><ahref="#">Remote ESP Bug</a> tool made by <ahref="">Alex Lynd</a>.</p>
</div>
</body>
</html>