frida-java-bridge
frida-java-bridge copied to clipboard
Java runtime interop from Frida
{"type":"error","description":"Error: Unable to determine ClassLinker field offsets","stack":"Error: Unable to determine ClassLinker field offsets\n at Ye (frida/node_modules/frida-java-bridge/lib/android.js:400:1)\n at frida/node_modules/frida-java-bridge/lib/memoize.js:4:1\n at ze (frida/node_modules/frida-java-bridge/lib/android.js:193:1)\n at Oe (frida/node_modules/frida-java-bridge/lib/android.js:16:1)\n at _tryInitialize (frida/node_modules/frida-java-bridge/index.js:29:1)\n at new _...
This repo is probably the right place for the problem. ### Setup - Frida: frida-server-15.1.28-android-arm64 from github - Mobile: Poco F3 - Android OS: crDroidAndroid-12.1-20220715-alioth-v8.7 ``` getprop |grep ro.build.version.sdk [ro.build.version.sdk]:...
Bumps [terser](https://github.com/terser/terser) from 5.5.1 to 5.14.2. Changelog Sourced from terser's changelog. v5.14.2 Security fix for RegExps that should not be evaluated (regexp DDOS) Source maps improvements (#1211) Performance improvements in...
From this [blog post](https://www.ayrx.me/frida-hotspot-jvm/) I learned that the HotSpot JVM is apparently also supported by Frida on macOS. However, using macOS 12.4., with Frida 15.1.28, `Java.available` will return `false` (I've...
Bumps [shell-quote](https://github.com/substack/node-shell-quote) from 1.7.2 to 1.7.3. Changelog Sourced from shell-quote's changelog. 1.7.3 Fix a security issue where the regex for windows drive letters allowed some shell meta-characters to escape the...
the function invocation mechanism was choosing the first compatible func according the the args and available overloads but there was a bug since some types that are available in java...
If "$" is used as a method name get function of wrapper does not handle it correctly. This fixes the issue. I also added test for this. Not sure it...
Because of the way Frida resolve name conflicts, it can be hard to determine the name of a field in Frida. To prevent this, this patch make the naming of...
I'm trying to call a function with Frida that takes a string array as one of its arguments. ```java public void coolFunction(long value, String[] strArr); ``` Within Java it gets...
I'm trying to use Frida with a Linux x86_64 Java application. I'm using the OpenJDK 17 with debug symbols [provided by Eclipse Adoptium](https://adoptium.net/releases.html?variant=openjdk17&jvmVariant=hotspot). When I run the application (a .jar...