Example Usage
from pymodhook import *
init_hook()
hook_modules("numpy", "matplotlib.pyplot", for_=["__main__"]) # Record calls to numpy and matplotlib
enable_hook()
import numpy as np
import matplotlib.pyplot as plt
arr = np.array(range(1,11))
arr_squared = arr ** 2
mean = np.mean(arr)
std_dev = np.std(arr)
print(mean, std_dev)
plt.plot(arr, arr_squared)
plt.show()
# Display the recorded code
print(f"Raw call trace:\n{get_code()}\n")
print(f"Optimized code:\n{get_optimized_code()}")
See also
Zygisk-Il2CppDumper
Open Source
Using Zygisk to dump il2cpp data at runtime…
010editor
Free
Templates and scripts for 010 editor…
NebulaFD
Free
A work in progress, reimagined decompiler for Clickteam Fusion.…
Radare2
Open Source
Kali
Portable reversing framework that includes a hex editor, disassembler, debugger, scripting engine (r…
abcde
Open Source
ABCDE是一个使用Kotlin编写的OpenHarmony逆向工具包,目前已经实现的功能为解析方舟字节码文件中 的类信息、方法信息、字面量数组信息以及对方法进行反汇编,解析资源索引文件等功能。…
IDA Pro
Paid
The industry-standard disassembler and decompiler (with Hex-Rays decompiler). Supports the widest ra…