[PR #247] [MERGED] Version 1.5 #1058

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

📋 Pull Request Information

Original PR: https://github.com/SpacehuhnTech/esp8266_deauther/pull/247
Author: @spacehuhn
Created: 6/5/2017
Status: Merged
Merged: 6/5/2017
Merged by: @spacehuhn

Base: masterHead: testing


📝 Commits (10+)

  • c70bc66 Merge branch 'master' into testing
  • 4c069a5 Add select / deselect all functionality
  • ec0d4fb Fixed NameList bug
  • a1b7a06 NameList fix
  • acc0cf8 Added a list of the contributors in the "info" web page
  • 98deeb5 Prevent ClientScan to pick the broadcast address as a client
  • 3128dbe Fixed APScan select bug + Attack status bug
  • ff745f6 Enabled Multiple attacks + Improved Probe Request
  • 64cb0a6 Added Mac-change & Beacon Interval Setting
  • e33758c Added Random-SSID Mode

📊 Changes

35 files changed (+1882 additions, -708 deletions)

View changed files

.github/issue_template.md (+0 -5)
.github/issues.md (+0 -50)
📝 LICENSE (+158 -18)
📝 README.md (+570 -282)
📝 esp8266_deauther/APScan.cpp (+26 -7)
📝 esp8266_deauther/Attack.cpp (+87 -32)
📝 esp8266_deauther/Attack.h (+18 -1)
📝 esp8266_deauther/ClientScan.cpp (+21 -10)
📝 esp8266_deauther/NameList.cpp (+18 -12)
📝 esp8266_deauther/NameList.h (+3 -2)
📝 esp8266_deauther/SSIDList.cpp (+3 -3)
📝 esp8266_deauther/SSIDList.h (+1 -1)
📝 esp8266_deauther/Settings.cpp (+52 -28)
📝 esp8266_deauther/Settings.h (+10 -2)
📝 esp8266_deauther/data.h (+18 -18)
📝 esp8266_deauther/esp8266_deauther.ino (+172 -104)
screenshots/wifi_deauther_board.jpg (+0 -0)
web_server/converter.html (+71 -0)
📝 web_server/html/apscan.html (+9 -1)
📝 web_server/html/attack.html (+54 -18)

...and 15 more files

📄 Description

No description provided


🔄 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/247 **Author:** [@spacehuhn](https://github.com/spacehuhn) **Created:** 6/5/2017 **Status:** ✅ Merged **Merged:** 6/5/2017 **Merged by:** [@spacehuhn](https://github.com/spacehuhn) **Base:** `master` ← **Head:** `testing` --- ### 📝 Commits (10+) - [`c70bc66`](https://github.com/SpacehuhnTech/esp8266_deauther/commit/c70bc66bd1bafa0023f0ec81ad069921a1b45d23) Merge branch 'master' into testing - [`4c069a5`](https://github.com/SpacehuhnTech/esp8266_deauther/commit/4c069a53bdd08474fd661ece386ea8fb01d15c31) Add select / deselect all functionality - [`ec0d4fb`](https://github.com/SpacehuhnTech/esp8266_deauther/commit/ec0d4fb2f286e033e73366b4a6de4ea6fad14f3c) Fixed NameList bug - [`a1b7a06`](https://github.com/SpacehuhnTech/esp8266_deauther/commit/a1b7a0640d0df0d1d7db2448fa9e88846a6808fc) NameList fix - [`acc0cf8`](https://github.com/SpacehuhnTech/esp8266_deauther/commit/acc0cf83c22d9544698115d66569bc094a65c17a) Added a list of the contributors in the "info" web page - [`98deeb5`](https://github.com/SpacehuhnTech/esp8266_deauther/commit/98deeb503bd4489bd613c59faece674de0f1e773) Prevent ClientScan to pick the broadcast address as a client - [`3128dbe`](https://github.com/SpacehuhnTech/esp8266_deauther/commit/3128dbe83facacd768807d2e82edae8ccdb3e858) Fixed APScan select bug + Attack status bug - [`ff745f6`](https://github.com/SpacehuhnTech/esp8266_deauther/commit/ff745f687056d6c73e0ffe9860360bd751455136) Enabled Multiple attacks + Improved Probe Request - [`64cb0a6`](https://github.com/SpacehuhnTech/esp8266_deauther/commit/64cb0a6f2a21624dc99c608893d21aa150df1493) Added Mac-change & Beacon Interval Setting - [`e33758c`](https://github.com/SpacehuhnTech/esp8266_deauther/commit/e33758cc168d190bf441d4743c377cc79ede2abf) Added Random-SSID Mode ### 📊 Changes **35 files changed** (+1882 additions, -708 deletions) <details> <summary>View changed files</summary> ➖ `.github/issue_template.md` (+0 -5) ➖ `.github/issues.md` (+0 -50) 📝 `LICENSE` (+158 -18) 📝 `README.md` (+570 -282) 📝 `esp8266_deauther/APScan.cpp` (+26 -7) 📝 `esp8266_deauther/Attack.cpp` (+87 -32) 📝 `esp8266_deauther/Attack.h` (+18 -1) 📝 `esp8266_deauther/ClientScan.cpp` (+21 -10) 📝 `esp8266_deauther/NameList.cpp` (+18 -12) 📝 `esp8266_deauther/NameList.h` (+3 -2) 📝 `esp8266_deauther/SSIDList.cpp` (+3 -3) 📝 `esp8266_deauther/SSIDList.h` (+1 -1) 📝 `esp8266_deauther/Settings.cpp` (+52 -28) 📝 `esp8266_deauther/Settings.h` (+10 -2) 📝 `esp8266_deauther/data.h` (+18 -18) 📝 `esp8266_deauther/esp8266_deauther.ino` (+172 -104) ➕ `screenshots/wifi_deauther_board.jpg` (+0 -0) ➕ `web_server/converter.html` (+71 -0) 📝 `web_server/html/apscan.html` (+9 -1) 📝 `web_server/html/attack.html` (+54 -18) _...and 15 more files_ </details> ### 📄 Description _No description provided_ --- <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:10 +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#1058
No description provided.