From a69f362afa6c7f39b0d0513647156aec4ad1d456 Mon Sep 17 00:00:00 2001 From: pr3y Date: Sun, 4 Aug 2024 13:55:25 -0300 Subject: [PATCH] New version and fixes --- README.md | 22 ---------------------- platformio.ini | 2 +- src/modules/wifi/sniffer.cpp | 2 +- 3 files changed, 2 insertions(+), 24 deletions(-) diff --git a/README.md b/README.md index 704cb2d7..3f6c121d 100644 --- a/README.md +++ b/README.md @@ -121,25 +121,3 @@ For more information on each function supported by Bruce, [read our wiki here](h Bruce is a tool for cyber offensive and red team operations, distributed under the terms of the Affero General Public License (AGPL). It is intended for legal and authorized security testing purposes only. Use of this software for any malicious or unauthorized activities is strictly prohibited. By downloading, installing, or using Bruce, you agree to comply with all applicable laws and regulations. This software is provided free of charge, and we do not accept payments for copies or modifications. The developers of Bruce assume no liability for any misuse of the software. Use at your own risk. -# Changelog -* 1.2.2 - * new clock icon - * clock redraw for a slightly better one - * add default ssid and password (values: Mobile-AP / mobile-ap) on WiFi connect (to not type pwd on M5StickC Plus 2) - * add password (brucenet) to WiFi AP feature, and add QRCode to connect to it (more secure and easy to connect with QRCode) - * simple BT connection (code from M5 demo) - * BLE recon / scanner - * QRCodes display (code from Nemo) (BruceAP, RickRoll, HackerTyper, ZomboCom) - * Mic spectrum (code from M5 demo) - * center Bruce and version to splashscreen for better UI - * set & display clock from RTC - * UI bug fixes (like Wifi info drawn on top of the UI boders) - * return to main menu fixed and added when missing - * better shutdown to avoir rolling menu (code from M5 demo) - * add little tone / bip at startup (just because it can, and can be bypassed if key pressed while booting) - -* 1.2.1: - * Fixed EEPROM save - * Fixed Custom IR commands - * Added IR to the main menu - * Added Pause on IR Custom Spam diff --git a/platformio.ini b/platformio.ini index d9167e8e..4eae5068 100644 --- a/platformio.ini +++ b/platformio.ini @@ -19,7 +19,7 @@ default_envs = [common] build_flags = - -DBRUCE_VERSION='"1.3"' + -DBRUCE_VERSION='"1.3.1"' -DMAXFILES=256 -DEEPROMSIZE=128 -DLH=8 diff --git a/src/modules/wifi/sniffer.cpp b/src/modules/wifi/sniffer.cpp index ea4caf87..a3fd14b1 100644 --- a/src/modules/wifi/sniffer.cpp +++ b/src/modules/wifi/sniffer.cpp @@ -86,7 +86,7 @@ void sniffer(void *buf, wifi_promiscuous_pkt_type_t type){ uint32_t len = ctrl.sig_len; if(type == WIFI_PKT_MGMT) { - len -= 4; // Need to remove last 4 bits (for checksum) or packet gets malformed # https://github.com/espressif/esp-idf/issues/886 + len -= 4; // Need to remove last 4 bytes (for checksum) or packet gets malformed # https://github.com/espressif/esp-idf/issues/886 } newPacketSD(timestamp, microseconds, len, pkt->payload); // write packet to file