Skip to content

v1.2.0.0

Compare
Choose a tag to compare
@github-actions github-actions released this 30 Aug 21:07
· 91 commits to main since this release
e6580dd

This release improve the code and the GUI in some apps, the interactions feels more natural and we add a functionality for app selection.

Important

OTA require 8MB, if you want build it for other memory capacity, compile without the OTA.

WIFI

  • Wardriving
  • WiFi sniffer
  • WiFi deauther
  • DOS Attack (Control with Console and Minino)
  • Analyzer
  • Wireshark integration

BLE

  • BLE Sniffer
  • BLE Spammer
  • BLE Spoffing (HID device, audio control)
  • BLE Trackers Scanner (AirTags, Tile, etc)
  • Wireshark integration

Zigbee

  • Zigbee sniffer
  • Zigbee spoofing (Switch End Device)
  • Wardriving
  • Wireshark integration

Thread

  • Thread sniffer
  • Thread broadcast
  • Wardriving
  • Wireshark integration

Matter

  • Matter protocol support
  • Matter CLI

Tools

  • OTA Firmware Update
  • GPS Location
  • GPS Speed
  • GPS Time
  • SD
  • File Manager Web (Local AP and WIFI access)
  • File Manager Local
  • I2C Scanner
  • UART2

Settings

  • Change screensaver
  • Change time screensaver
  • Stealth mode (Disable animation, leds and sound)
  • APP selection

APP selection

Inside the firmware folder, you need to use the idf.py menuconfig and select the APPS and Features menu, this show the current apps and you can check or uncheck the apps that you need. Then build and upload.

Flashing release

OTA

Table for ESP Tool

Flash Address File
0x0 bootloader.bin
0x8000 partition-table.bin
0x15000 ota_data_initial.bin
0xa0000 minino.bin

Command

 python -m esptool --chip esp32c6 -b 460800 --before default_reset --after hard_reset write_flash --flash_mode dio --flash_size 8MB --flash_freq 80m 0x0 bootloader.bin 0x8000 partition-table.bin 0x15000 ota_data_initial.bin 0xa0000 minino.bin

NO OTA

Flash Address File
0x0 bootloader.bin
0x8000 partition-table.bin
0x20000 minino.bin
 python -m esptool --chip esp32c6 -b 460800 --before default_reset --after hard_reset write_flash --flash_mode dio --flash_size 8MB --flash_freq 80m 0x0 bootloader.bin 0x8000 partition-table.bin 0x20000 minino.bin

Full Changelog: v1.0.1.0...v1.0.3.0

What's Changed

Full Changelog: v1.5...v1.2.0.0