Rdbo
Rdbo
Mounting procfs is no longer necessary (5.0)
I ran the following command: ``` $ apkinjector frida --script agent.js --arch arm64 com.some.app.apk --output someapp.apk ``` It downloaded the frida gadgets, but didn't download `apktool`: ``` [+] apkinjector -...
Currently, it seems that it is not possible to compile Keystone by picking individual architectures For example, when using an external project, none of these work: ```cmake set(KEYSTONE_LLVM_TARGETS "AArch64;ARM;Mips;PowerPC;Sparc;SystemZ;X86") set(KEYSTONE_CMAKE_ARGS...
I tried the following ways to format a float to have 2 decimal place precision, but neither worked: ``` {{ "%.2f" % price }} ``` Result: `invalid operation: tried to...
Although complex, a remote call API could be possible if done like this: ```c enum { LM_REG_RAX = 0, ... LM_REG_MAX }; enum { LM_FPREG_XMM0 = 0, ... LM_FPREG_MAX }...
These issues were mentioned by @d0ubleday   TLDR: - The ptrace impl doesn't check why the process stopped; it just assumed it was part of the regular execution (which...