Advertisement
Guest User

Untitled

a guest
Jan 16th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. setImmediate(function() {
  2. console.log("[*] Starting script");
  3. Java.perform(function() {
  4. Var hooked_class = Java.use("<Class to Hook>");
  5. hooked_class.onClick.implementation = function(v) {
  6. console.log("[*] onClick called.");
  7. };
  8. console.log("[*] onClick handler modified");
  9. });
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement