Jake R
Jake R
after thinking more about this and experimenting some, it may make sense to modify this somewhat. on ARM, the pop (i.e. ldm) base register can be any register and as...
Other case in question: `add sp, sp, #0xc; ldm sp!, {pc}`
The refined split between ROP and JOP for ldm* instructions is: its ROP if: - its unconditional - up/down bit set to 1, meaning it must go up the stack...
I add it when disassembling the gadget so that relative branch targets are correct (I can show an example if you'd like), but then subtract it for the gadget address...
Also I've totally just mixed together these pull requests at this point, sorry :/
Hello all, I recently started a similar project that I have integrated into the bindings directly (https://github.com/Jake-R/unicorn) and I'm looking for some feedback on the interface. the interface is a...
Thanks for your reply - it definitely felt weird adding a new GCode flavor for whats probably only a couple printers so that policy makes total sense. The work was...
I have created a typer script that uses global options implemented via the callback feature. (see https://typer.tiangolo.com/tutorial/commands/callback/ + https://github.com/tiangolo/typer/issues/42) I tried to implement an autocomplete functionality for a sub-command but...
@alexreg I don't necessarily disagree. I'm not sure how callback functions on apps with subcommands are used by all of Typer's users and its probable that having it trigger on...