From 9e9bb403b42a5dc3a4c9ce337104e2f29e4e001a Mon Sep 17 00:00:00 2001 From: iddoeldor Date: Sun, 24 Jun 2018 12:03:44 +0300 Subject: [PATCH] log webview load urls --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index db15c3f..8255ae2 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,7 @@ - [Find iOS application UUID](#find-ios-application-uuid) - [Execute shell command](https://github.com/iddoeldor/frida-snippets/blob/master/scripts/exec_shell_cmd.py) - [Observe iOS class](#observe-ios-class) + - [Webview URLS](#webview-urls) - [TODO list](#todos) #### Enumerate loaded classes @@ -270,6 +271,14 @@ Observing Someclass$innerClass - empty RET: 0xabcdef ``` +#### Webview URLS +``` +Java.use("android.webkit.WebView").loadUrl.overload("java.lang.String").implementation = function (s) { + send(s.toString()); + this.loadUrl.overload("java.lang.String").call(this, s); +}; +``` + #### TODOs - Add GIFs & docs - Add links to /scripts