RFQuack
RFQuack copied to clipboard
RFQuack: the versatile RF-analysis tool that quacks!
Bumps [protobuf](https://github.com/protocolbuffers/protobuf) from 3.11.3 to 3.18.3. Release notes Sourced from protobuf's releases. Protocol Buffers v3.18.3 C++ Reduce memory consumption of MessageSet parsing This release addresses a Security Advisory for C++...
Allow the RFQuack radio module to pass a callback to the RadioHAL driver. The callback will be invoked upon all valid RX interrupts, such that polling won't be needed anymore.
Add the possibility of chaining rules conditionally, for instance: if (pattern of) a rule matches, go to another rule and skip the rest.
On the client side, provide an expressive packet-manipulation mini language. For instance: ``` q.add_packet_manipulation("/[ke]$/: [2] ^= 0x30") q.add_packet_manipulation("[5] ^= 0x04") q.add_packet_manipulation("[@'A')] &= 0x03") ``` would be equivalent to ``` q.add_packet_manipulation(pattern='[ke]$',...