frida-java-bridge 6.2.5 → 6.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/android.js +3 -1
- package/package.json +1 -1
package/lib/android.js
CHANGED
|
@@ -1844,8 +1844,10 @@ function instrumentArtMethodInvocationFromInterpreter () {
|
|
|
1844
1844
|
let artInterpreterDoCallExportRegex;
|
|
1845
1845
|
if (apiLevel <= 22) {
|
|
1846
1846
|
artInterpreterDoCallExportRegex = /^_ZN3art11interpreter6DoCallILb[0-1]ELb[0-1]EEEbPNS_6mirror9ArtMethodEPNS_6ThreadERNS_11ShadowFrameEPKNS_11InstructionEtPNS_6JValueE$/;
|
|
1847
|
-
} else {
|
|
1847
|
+
} else if (apiLevel <= 33) {
|
|
1848
1848
|
artInterpreterDoCallExportRegex = /^_ZN3art11interpreter6DoCallILb[0-1]ELb[0-1]EEEbPNS_9ArtMethodEPNS_6ThreadERNS_11ShadowFrameEPKNS_11InstructionEtPNS_6JValueE$/;
|
|
1849
|
+
} else {
|
|
1850
|
+
artInterpreterDoCallExportRegex = /^_ZN3art11interpreter6DoCallILb[0-1]EEEbPNS_9ArtMethodEPNS_6ThreadERNS_11ShadowFrameEPKNS_11InstructionEtbPNS_6JValueE$/;
|
|
1849
1851
|
}
|
|
1850
1852
|
|
|
1851
1853
|
for (const exp of Module.enumerateExports('libart.so').filter(exp => artInterpreterDoCallExportRegex.test(exp.name))) {
|