Skip to content

Instantly share code, notes, and snippets.

@henrytom1703
henrytom1703 / pairip_analysis.js
Created April 21, 2026 00:47 — forked from Ahmeth4n/pairip_analysis.js
simple PairIP executeVM() analyzer frida script.
function hookNative() {
const jniOnLoad = moduleHandle.findExportByName("JNI_OnLoad");
if (!jniOnLoad) {
console.log("[-] JNI_OnLoad not found!");
return;
}
console.log("[+] JNI_OnLoad founded:", jniOnLoad);