xiongzhu 10 months ago
parent
commit
f78de91012
2 changed files with 8 additions and 0 deletions
  1. 4 0
      scripts/connect.js
  2. 4 0
      scripts/droidguard.js

+ 4 - 0
scripts/connect.js

@@ -201,6 +201,10 @@ setImmediate(() => {
         for (let i of classLoaders) {
             if (i.toString().includes('service-connectivity')) {
                 log(i)
+                for(let k of Object.keys(i)) {
+                    log(k)
+                }
+                log(i.packages.value)
                 Java.classFactory.loader = i
             }
         }

+ 4 - 0
scripts/droidguard.js

@@ -107,4 +107,8 @@ Java.perform(function () {
         Log.s('DroidGuard.$init6', str, obj, bool, bundle)
         return this.$init(context, str, bytes, obj, bool, bundle)
     }
+    DroidGuard.ssNative.overload('long', '[Ljava.lang.String;').implementation = function (l, strings) {
+        Log.s('DroidGuard.ssNative', l, strings)
+        return this.ssNative(l, strings)
+    }
 })