mirror of
https://github.com/SpacehuhnTech/esp8266_deauther.git
synced 2025-12-23 23:20:00 +01:00
- 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
58 lines
2.2 KiB
HTML
58 lines
2.2 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">
|
|
<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">Info</h1>
|
|
<h2>ESP8266 Deauther</h2>
|
|
<p>
|
|
<span class="bold">Copyright (c) 2017 Stefan Kremser</span><br />
|
|
This project is licensed under the MIT License - see the <a href="license">license file</a> file for details.<br />
|
|
<br />
|
|
The source code is available on <a href="https://github.com/spacehuhn/esp8266_deauther" target="_blank">GitHub</a>.<br />
|
|
<br />
|
|
<br />
|
|
Use it only for testing or educational purposes on your own devices!<br />
|
|
<br />
|
|
<span class="bold">
|
|
Any redistributing, advertising or selling of this project as "jammer" without clearly stating it as a pentesting device for testing purposes only, is prohibited!<br />
|
|
</span>
|
|
<br />
|
|
</p>
|
|
|
|
<h2>Credits</h2>
|
|
<p>
|
|
<a href="https://github.com/ThisIsDallas/Simple-Grid">SIMPLE GRID</a> - Copyright (C) 2013 Dallas Bass - Released under the MIT License.<br />
|
|
<br />
|
|
The MAC adresse list is based on Wireshark manufacturer database.<br />
|
|
Source: <a href="https://www.wireshark.org/tools/oui-lookup.html">https://www.wireshark.org/tools/oui-lookup.html</a><br />
|
|
Wireshark is released under the GNU General Public License version 2<br />
|
|
</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>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |