Skip to content

Commit

Permalink
New version and fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pr3y committed Aug 4, 2024
1 parent 2d92e43 commit a69f362
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 24 deletions.
22 changes: 0 additions & 22 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ default_envs =

[common]
build_flags =
-DBRUCE_VERSION='"1.3"'
-DBRUCE_VERSION='"1.3.1"'
-DMAXFILES=256
-DEEPROMSIZE=128
-DLH=8
Expand Down
2 changes: 1 addition & 1 deletion src/modules/wifi/sniffer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a69f362

Please sign in to comment.