summaryrefslogtreecommitdiffstats
path: root/reversing_tools (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-03-22Make HID support a "session" class rather than a base class.Diego Elio Pettenò1-5/+5
This in turn allows wrapping the FreeStyle access in its own session class, which the freestyle_hid_console can use without dirty tricks, and without triggering the now-abstract class.
2020-03-14Now that Python 3.6 is the minimum supported version, use f-strings.Diego Elio Pettenò1-2/+2
The f-strings formatted strings are generally simpler to write, read and debug, with a few exceptions. Keep the logging strings lazy, keep the CSV-building with %-formatting, as it makes it more readable. In fsoptium, keep `'$%s\r\n'` as a %-format, to avoid making it `f'${command}\r\n'` that would make it easy to mistake for a Shell variable.
2020-03-08format code with blackBen2-51/+100
2020-02-01Clean up the extraction script, and make it more user friendly.Diego Elio Pettenò1-13/+37
This includes changes to the flags, so that instead of an address prefix you need to provide a full device address, and instead of `--libre2`, there's a `--encrypted_protocol` flag. If the capture includes the descriptors, neither flags are needed because the script identifies them itself.
2020-01-24extract_freestyle: add an option to not print keepalive messages.Diego Elio Pettenò1-1/+16
These messages are not encrypted, but they can also be safely ignored.
2020-01-24Avoid heuristics, and instead add an explicit --libre2 flag.Diego Elio Pettenò1-12/+16
This encodes some more details of which commands are encrypted and not, but makes decoding easier.
2020-01-24Add a tool to extract a FreeStyle protocol chatter from an usbmon capture.Diego Elio Pettenò1-0/+109
The tool needs https://github.com/Flameeyes/usbmon-tools to work, and is derived off the extract-hid-chatter tool in that repository, so it's Apache-2 licensed (unlike the rest of the repository) and shares copyright with the usbmon-tools authors. While this does not work correctly for Libre2 traces, it does appear to work fine with Libre1 systems with text protocol exchanges, and it provides a starting point.
2019-09-27Fix the freestyle_hid_console to use Python 3.5 compatible formatting.Diego Elio Pettenò1-2/+2
2019-09-15Add the list of known FreeStyle commands to the tools directory.Diego Elio Pettenò1-0/+48
This can be used to help testing new FreeStyle devices, like the Libre2.
2019-09-08freestyle_hid_console: allow feeding a list of known commands.Diego Elio Pettenò1-1/+7
This makes it easier to identify the expected command range of a FreeStyle device.
2019-09-08Add a simple-ish script to use access a FreeStyle HID-compatible commands.Diego Elio Pettenò1-0/+46
This makes it possible to send and receive text-command protocols to a FreeStyle HID device without actually writing any code, to identify possible valid commands.