mirror of
https://github.com/SpacehuhnTech/esp8266_deauther.git
synced 2025-12-22 22:49:58 +01:00
69 lines
2.3 KiB
HTML
69 lines
2.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="style.css">
|
|
<meta name="viewport" content="width=device-width, initial-scale=0.8">
|
|
</head>
|
|
<body>
|
|
<nav>
|
|
<a href="/">APs</a>
|
|
<a href="clients">Clients</a>
|
|
<a href="attack">Attack</a>
|
|
<a href="settings">Settings</a>
|
|
<ul class="nav right">
|
|
<a href="#" onclick="restartESP()">Restart</a>
|
|
<ul>
|
|
</nav>
|
|
<div id="content">
|
|
<h1>Attack</h1>
|
|
|
|
<p class="block bold">Selected AP:</p>
|
|
<ul id="selectedAPs">
|
|
</ul>
|
|
|
|
<br />
|
|
|
|
<p class="block bold">Selected Clients:</p>
|
|
<ul id="selectedClients">
|
|
</ul>
|
|
|
|
<br />
|
|
|
|
<table>
|
|
</table>
|
|
|
|
<p class="small">
|
|
<br />
|
|
<b>deauth [deauthentication attack]:</b><br />
|
|
Sends deauthentication frames and dissociation frames to the selected client(s) in the selected WiFi access point(s).
|
|
<br />
|
|
<b>Note: </b>
|
|
If no client is selected, the packets are sent as broadcast!
|
|
<br /><br />
|
|
<b>beacon [beacon flood attack]:</b><br />
|
|
(clone:) Spams beacon frames with a similar SSID as the selected WiFi access point(s).<br />
|
|
(list:) Spams beacon frames with all SSIDs in the list below.
|
|
<br /><br />
|
|
<b>probe request [probe request flood attack]:</b><br />
|
|
Spams probe request frames with all SSIDs in the list below.<br />
|
|
Useful to confuse and spam WiFi trackers.
|
|
</p>
|
|
<br />
|
|
<p class="block bold">SSIDs: <span id="ssidCounter">0/64</span> <button class="marginNull warnBtn" onclick="clearSSID()">clear</button> <button class="marginNull" onclick="randomSSID()">random</button> <button class="marginNull" onclick="cloneSSID()">clone</button> <button class="marginNull" onclick="addSSID()">add</button></p>
|
|
<br />
|
|
<table>
|
|
</table>
|
|
<br />
|
|
<button class="marginNull warnBtn" onclick="resetSSID()">reset</button> <button class="marginNull" onclick="saveSSID()">save</button> <p class="small" id="saved">saved</p>
|
|
</div>
|
|
<script src="js/functions.js"></script>
|
|
<script src="js/attack.js"></script>
|
|
<div id="copyright">
|
|
Copyright 2017 Stefan Kremser<br />
|
|
<br />
|
|
<a href="https://github.com/spacehuhn" target="_blank">github.com/spacehuhn</a><br />
|
|
<a href="https://twitter.com/spacehuhn" target="_blank">twitter.com/spacehuhn</a><br />
|
|
</div>
|
|
</body>
|
|
</html> |