firmware icon indicating copy to clipboard operation
firmware copied to clipboard

Brucegotchi exception list

Open Salubra opened this issue 1 year ago • 2 comments

When using brucegotchi at home, it started deauthing my network, not convenient ;(

Add new field to bruce.conf that contains ssid list of networks, that you don't want to act with.

"wifi_exception_list": [
    "myNetSSID",
    "myFriendNetSSID"
]

Or you can add a new field to already existing "wifi"

"wifi": [
    {
        "ssid": "myNetSSID",
        "pwd": "myNetPassword",
        "exception": true
    }
]

And it would be also nice to be able to configure this from Config menu (And you can even make an entire menu to manage wifi networks and change their passwords and names, but that's just dreams...)

Salubra avatar Oct 29 '24 20:10 Salubra

Interesting...

Problem is that bruce gets the beacons to deauth from packet sniffer, and gets only (for now) the MAC address to spam the frames..

To make a comparison such as that we need to

  • Or have the Mac saved in the whitelist
  • Or find the address where SSID is written in the beacon frame

And make the comparison.. for simplicity, I would work on ignore all networks saved on the bruce.conf file (because you already have the password, so doesn't make sense you force Handshake detection on this network)

These are just thoughts to register here

bmorcelli avatar Oct 29 '24 20:10 bmorcelli

As a temporary way, you can leave your home network (if possible) at 5Ghz, along with your devices, so Brucegotchi would not encounter and not have this problem. I know it's not the definitive solution, but it's a point that can help with your tests and studies :)

IncursioHack avatar Oct 29 '24 21:10 IncursioHack