Files
esp8266_deauther/web_server/html/attack.html
Stefan Kremser 6cd3a46144 version 1.4
- changed webinterface design
- improved error handling
- can add clients manually
- added settings reset via console command "reset" and GPIO 4
- improved default settings for more stability
- added warning at the beginning
- added info page
2017-05-01 20:05:41 +02:00

82 lines
2.6 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">Attacks</h1>
<p class="bold">Selected AP(s):</p>
<ul id="selectedAPs">
</ul>
<br />
<p class="bold">Selected Station(s):</p>
<ul id="selectedClients">
</ul>
<br />
<table>
</table>
<p>
<span class="warn">INFO: </span><span class="bold">You may loose connection when starting the attack.</span><br />
Change the channel in the settings to the same of the selected AP to prevent this.
<br />
<br />
<span class="bold">Deauth [deauthentication attack]:</span><br />
Sends deauthentication and dissociation frames to the selected station(s) and access point(s).<br />
<br />
<span class="bold">Beacon [beacon flood]:</span><br />
Sends beacon frames with the SSIDs in the list below.<br />
<br />
<span class="bold">Probe-Request [probe request flood]:</span><br />
Sends probe request frames with the SSIDs in the list below.
</p>
<br />
<p class="left">SSIDs: <span id="ssidCounter">0/48</span>
<div class="right">
<button class="button-warn" onclick="clearSSID()">clear</button>
<button onclick="randomSSID()">random</button>
<button onclick="cloneSSID(prompt('new SSID:'))">clone</button>
<button class="button-primary" onclick="addSSID()">add</button></p>
</div>
<br />
<table></table>
<br />
<button class="marginNull button-warn" onclick="resetSSID()">reset</button>
<button class="marginNull button-primary right" onclick="saveSSID()">save</button>
<p class="small" id="saved">saved</p>
<div id="copyright">
version 1.4<br />
Copyright (c) 2017 Stefan Kremser<br />
<a href="https://github.com/spacehuhn" target="_blank">github.com/spacehuhn</a><br />
</div>
<script src="js/attack.js"></script>
</div>
</div>
</div>
</body>
</html>