Skip to content

Instantly share code, notes, and snippets.

View harshitrajpal's full-sized avatar

Harshit Rajpal harshitrajpal

View GitHub Profile
//code to be used for hooking demonstration.
console.log("Script loaded!");
Java.perform(function myFunc() {
var myClass = Java.use("com.example.harshitrajpal.MainActivity");
myClass.returnValue.implementation = function() {
//var ret_value = this.returnValue();
var ret = 100;
return ret;
}