Skip to content

Instantly share code, notes, and snippets.

View JeelsBoobz's full-sized avatar
💭
I may be slow to respond.

JeelsBoobz JeelsBoobz

💭
I may be slow to respond.
View GitHub Profile
@JeelsBoobz
JeelsBoobz / hookNativeFunc.js
Created February 1, 2023 22:34 — forked from konwa/hookNativeFunc.js
Frida android native hooking
// Android native hooks By @709924470
// CC-BY-NC 4.0
var moduleName = "libmain.so"; // Module name gose here
var hookFunctions = [
{
name: "Java_com_example_hellojni_getstr", // Function name goes here
onEnter: function(args){
// TODO: your code here
},
onLeave: function(ret){