mirror of
https://github.com/SpacehuhnTech/esp8266_deauther.git
synced 2025-12-23 23:20:00 +01:00
64 lines
1.8 KiB
HTML
64 lines
1.8 KiB
HTML
<!Doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>ESP8266 Deauther</title>
|
|
<meta name="description" content="Wi-Fi Deauthenticator">
|
|
<meta name="author" content="Spacehuhn - Stefan Kremser">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<script src="js/functions.js"></script>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<nav>
|
|
<a href="apscan.html">APs</a>
|
|
<a href="stations.html">Stations</a>
|
|
<a href="attack.html">Attacks</a>
|
|
<a href="settings.html">Settings</a>
|
|
<a class="right" href="info.html">Info</a>
|
|
</nav>
|
|
<div id="error"></div>
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<h1 class="header">Scan for Wi-Fi access points</h1>
|
|
|
|
<a id="scanInfo">scanning...</a>
|
|
<button onclick="scan()" id="apScanStart" class="right button-primary">scan</button>
|
|
|
|
<p>
|
|
Networks found:
|
|
<span id="networksFound">0</span>
|
|
<br />
|
|
MAC: <span id="apMAC"></span>
|
|
<span id="selectAllBtns" style="visibility:'hidden'">
|
|
<br />
|
|
<button class="marginNull button-primary left" onclick="select(-2)">deselect all</button>
|
|
<button class="marginNull button-primary right" onclick="select(-1)">select all</button>
|
|
</span>
|
|
</p>
|
|
<br />
|
|
|
|
<table></table>
|
|
|
|
<p class="small">
|
|
<span class="warn">INFO: </span><span class="bold">You may have to reload the site to see the results.</span>
|
|
<br />
|
|
<br />
|
|
WPA* = WPA/WPA2 auto mode
|
|
</p>
|
|
|
|
<div id="copyright">
|
|
version 1.5<br />
|
|
Copyright (c) 2017 Stefan Kremser<br />
|
|
<a href="https://github.com/spacehuhn" target="_blank">github.com/spacehuhn</a><br />
|
|
</div>
|
|
|
|
<script src="js/apscan.js"></script>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|