[PR #113] [MERGED] v.1.1 #1047

Closed
opened 2026-02-28 00:06:07 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/SpacehuhnTech/esp8266_deauther/pull/113
Author: @spacehuhn
Created: 3/12/2017
Status: Merged
Merged: 3/12/2017
Merged by: @spacehuhn

Base: masterHead: testing


📝 Commits (10+)

  • 8c33c19 Added restart button in the web interface
  • 58964ed Using built-in LED when an attack is running. (+ options)
  • 4e9e4c2 Bug fix: minified settings.html to free the flash memory
  • 1a8cb23 Merged branch testing into testing
  • da71127 LED debug info bugfix
  • 2b1527e Minified all html files to avoid memory problems
  • 6a76c1d Merge pull request #89 from N0vaPixel/testing
  • 6d13eba Now use GPIO2 to blink the ESP LED
  • 8107320 Merge pull request #94 from N0vaPixel/testing
  • 7a0d367 FIX Allow the user to set an empty password in order to make an open AP

📊 Changes

17 files changed (+553 additions, -294 deletions)

View changed files

📝 README.md (+1 -1)
📝 esp8266_deauther/Attack.cpp (+122 -27)
📝 esp8266_deauther/Attack.h (+18 -2)
📝 esp8266_deauther/ClientScan.cpp (+11 -4)
📝 esp8266_deauther/ClientScan.h (+2 -0)
📝 esp8266_deauther/Settings.cpp (+12 -2)
📝 esp8266_deauther/Settings.h (+4 -0)
📝 esp8266_deauther/data.h (+5 -5)
📝 esp8266_deauther/esp8266_deauther.ino (+126 -79)
📝 htmlfiles/attack.html (+20 -16)
📝 htmlfiles/clients.html (+17 -18)
📝 htmlfiles/functions.js (+9 -1)
📝 htmlfiles/index.html (+10 -23)
📝 htmlfiles/minifier.html (+9 -1)
htmlfiles/readme.md (+7 -0)
📝 htmlfiles/settings.html (+26 -15)
📝 htmlfiles/style.css (+154 -100)

📄 Description

  • Added restart button
  • Added Option to use built-in LED when an attack is running
  • Allow the user to set an empty password in order to make an open AP
  • Javascript compatibility fix for old browsers
  • Added the ability to view the AP of sniffed clients
  • Added channel hopping option for deauth attack

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/SpacehuhnTech/esp8266_deauther/pull/113 **Author:** [@spacehuhn](https://github.com/spacehuhn) **Created:** 3/12/2017 **Status:** ✅ Merged **Merged:** 3/12/2017 **Merged by:** [@spacehuhn](https://github.com/spacehuhn) **Base:** `master` ← **Head:** `testing` --- ### 📝 Commits (10+) - [`8c33c19`](https://github.com/SpacehuhnTech/esp8266_deauther/commit/8c33c191ee5219a76b561609a45dcfee5216c0a1) Added restart button in the web interface - [`58964ed`](https://github.com/SpacehuhnTech/esp8266_deauther/commit/58964ed989b5262edd72d5eddc7cc00519735125) Using built-in LED when an attack is running. (+ options) - [`4e9e4c2`](https://github.com/SpacehuhnTech/esp8266_deauther/commit/4e9e4c2356578b027639ced7fec9d1fd4d3d52a5) Bug fix: minified settings.html to free the flash memory - [`1a8cb23`](https://github.com/SpacehuhnTech/esp8266_deauther/commit/1a8cb23ca0c3d200e5309d99abd5c3c1a0908c3c) Merged branch testing into testing - [`da71127`](https://github.com/SpacehuhnTech/esp8266_deauther/commit/da71127156f4b2c722e74db35186f2f66994fbfd) LED debug info bugfix - [`2b1527e`](https://github.com/SpacehuhnTech/esp8266_deauther/commit/2b1527e78fa377f1d3e0f554e061dace62d81544) Minified all html files to avoid memory problems - [`6a76c1d`](https://github.com/SpacehuhnTech/esp8266_deauther/commit/6a76c1d5d4ccb8c02f853a228054c68ecb2cd7f9) Merge pull request #89 from N0vaPixel/testing - [`6d13eba`](https://github.com/SpacehuhnTech/esp8266_deauther/commit/6d13ebac0ca6ae5b8a56d15a29ca6efa2cfdb0b8) Now use GPIO2 to blink the ESP LED - [`8107320`](https://github.com/SpacehuhnTech/esp8266_deauther/commit/8107320bf8f2db79fa3bf1e2fe3d12ed763ea77a) Merge pull request #94 from N0vaPixel/testing - [`7a0d367`](https://github.com/SpacehuhnTech/esp8266_deauther/commit/7a0d3679004f3624d5cd1ffe938db33e0bd6aa7a) FIX Allow the user to set an empty password in order to make an open AP ### 📊 Changes **17 files changed** (+553 additions, -294 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+1 -1) 📝 `esp8266_deauther/Attack.cpp` (+122 -27) 📝 `esp8266_deauther/Attack.h` (+18 -2) 📝 `esp8266_deauther/ClientScan.cpp` (+11 -4) 📝 `esp8266_deauther/ClientScan.h` (+2 -0) 📝 `esp8266_deauther/Settings.cpp` (+12 -2) 📝 `esp8266_deauther/Settings.h` (+4 -0) 📝 `esp8266_deauther/data.h` (+5 -5) 📝 `esp8266_deauther/esp8266_deauther.ino` (+126 -79) 📝 `htmlfiles/attack.html` (+20 -16) 📝 `htmlfiles/clients.html` (+17 -18) 📝 `htmlfiles/functions.js` (+9 -1) 📝 `htmlfiles/index.html` (+10 -23) 📝 `htmlfiles/minifier.html` (+9 -1) ➕ `htmlfiles/readme.md` (+7 -0) 📝 `htmlfiles/settings.html` (+26 -15) 📝 `htmlfiles/style.css` (+154 -100) </details> ### 📄 Description - Added restart button - Added Option to use built-in LED when an attack is running - Allow the user to set an empty password in order to make an open AP - Javascript compatibility fix for old browsers - Added the ability to view the AP of sniffed clients - Added channel hopping option for deauth attack --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-28 00:06:07 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/esp8266_deauther#1047
No description provided.