B3NNY
B3NNY
- Serial read works now Timings are fixed and have been tested to work from 300 baud to 115200 baud. - Read with timeout (try_read()) A convenience function - now...
The serial read appears to be broken. The first issue is that it's loading bits from the LSB - so the final byte will be reversed. It should be loading...
Currently ropr only supports x86 / x86_64. This is partially just due to the disassembler being only compatible with x86. Consider the possiblity of switching to a new disassembler (maybe...
Currently this makes it difficult to look for certain kinds of gadgets - such as a jop gadget which utilizes push then ret etc. There should be a better way...
the layout of PE structs is pretty well documented, so it should be possible to turn PEs to and from bytes. If this is not completely possible, it should at...
Currently if I want to change tools using the mouse I need to click twice - one for the tool and one for the line mode. I think the line...
There should be some way to configure this to a different colour scheme - maybe a default configuration file path it'll look at eg. ~/.askii.toml or something....?
I have not been able to identify the cause of xargo not building this application, but I have attached the build log here. Any help would be much appreciated, thanks....
A little while back I was trying to create a UART bitbang library. I took a look at https://crates.io/crates/bitbang-hal however it was incompatible since for nrf51, the Timers usable for...
`Object::exports` should return some kind of iterator. Currently It requires allocating a Vec, which should be unnecessary...