Sh4w
Sh4w
I found a wrong type hint for ``reg_write`` method of ``Uc`` in Python bindings. Wrong: ```python def reg_write(self, reg_id: Union[int, ARMCPRegValue, ARM64CPRegValue, X86MMRReg, X86FPReg], value: int): ... ``` Correct: ```python...
I use `objpring` to print the elf header object, hope the number can be displayed in hexadecimal.
I am using strongarm to analysis `libsystem_kernel.dylib` from iOS. I found pointers in the section `__data` of segment `__DATA_ DIRTY`, I tried using `MachoBinary.read_pointer_section` to read, but this segement has...
I use Unicorn to emulate iOS executable file. It works normally on Windows, Linux, and macOS x86, but crashes on Apple Silicon (Not all scenes will crash, but they can...
Thanks for your reply. @rec0de Regarding the serialization issue, I'd like to add a few points. When running in the CLI, all inputs are JSON, so `bytes` indeed cannot occur....
**Describe the bug** During the process of fixing stubs, `DyldExtractor` redirects pointers in `__auth_got` to `__auth_stub`. While this works correctly for external symbols, it causes issues for symbols of type...
Ignore stub fixing for `INDIRECT_SYMBOL_LOCAL` symbols in `__auth_got`. Issue: #70 After the fix: