frida示例代码仓库
Go to file
2018-06-03 17:22:04 +03:00
check_for_native_calls.py get stack trace for native invokes 2018-04-23 19:06:53 +03:00
dump_dynamically_created_files.py dump dynamically created files to local 2018-04-23 19:00:54 +03:00
how_to_access_inner_class_static_field.md update 2018-05-31 11:44:48 +03:00
install_frida_server.sh install frida server 2018-05-23 10:57:31 +03:00
log_string_builders_and_string_compare.js log strings 2018-04-23 19:22:44 +03:00
print_native_method_arguments.py update #2 2018-06-03 17:22:04 +03:00
README.md read native method arguments 2018-06-03 12:56:30 +03:00

learn-frida-the-hard-way

  • Enumerate loaded classes

    $ frida -U com.pkg -qe 'Java.perform(function(){Java.enumerateLoadedClasses({"onMatch":function(c){console.log(c);}});});' -o pkg.classes
    
  • Extract modules from APK

      $ frida -Uq com.android. -e "Process.enumerateModules({onMatch: function(m){console.log('-' + m.name)},onComplete:function(){}})"
      ....
      -libsqlite.so
    
  • get methods from .so file

      $ adb pull /system/lib/libsqlite.so
       /system/lib/libsqlite.so: 1 file pulled. 19.7 MB/s (975019 bytes in 0.047s)
      $ nm -D libsqlite.so | cut -d' ' -f3 | grep sqlite3
      sqlite3_aggregate_context
      sqlite3_aggregate_count
      ....
    
      $ frida-trace -U -i "sqlite*" com.android.
      ...
       24878 ms  sqlite3_changes()
       24878 ms  sqlite3_reset()
       24878 ms     | sqlite3_free()
       24878 ms     | sqlite3_free()
       24878 ms  sqlite3_clear_bindings()
       24878 ms  sqlite3_prepare16_v2()  <<< this is the one that holds the SQL queries
       24878 ms     | sqlite3_free()
    
  • SQLite hook example (+Native)

      Interceptor.attach(Module.findExportByName('libsqlite.so', 'sqlite3_prepare16_v2'), {
          onEnter: function(args) {
              console.log('DB: ' + Memory.readUtf16String(args[0]) + '\tSQL: ' + Memory.readUtf16String(args[1]));
          }
      });
    
  • Hook example: java.lang.reflect.Method#invoke(Object obj, Object... args, boolean bool)

      Java.use('java.lang.reflect.Method').invoke.overload('java.lang.Object', '[Ljava.lang.Object;', 'boolean').implementation = function(a,b,c) {
          console.log('hooked!', a, b, c);
          return this.invoke(a,b,c);
      };
    
  • Hook constructor

      Java.use('java.lang.StringBuilder').$init.overload('java.lang.String').implementation = function(stringArgument) {
          console.log("c'tor");
          return this(stringArgument);
      };
    
  • Hook Native (JNI)

var moduleName = "libfoo.so"; 
var nativeFuncAddr = 0x1234; // $ nm --demangle --dynamic libfoo.so | grep "Class::method("

Interceptor.attach(Module.findExportByName(null, "dlopen"), {
    onEnter: function(args) {
        this.lib = Memory.readUtf8String(args[0]);
        console.log("dlopen called with: " + this.lib);
    },
    onLeave: function(retval) {
        if (this.lib.endsWith(moduleName)) {
            console.log("ret: " + retval);
            var baseAddr = Module.findBaseAddress(moduleName);
            Interceptor.attach(baseAddr.add(nativeFuncAddr), {
                onEnter: function(args) {
                    console.log("[-] hook invoked");
                    console.log(JSON.stringify({
                        a1: args[1].toInt32(),
                        a2: Memory.readUtf8String(Memory.readPointer(args[2])),
                        a3: Boolean(args[3])
                    }, null, '\t'));
                }
            });
        }
    }
});

TODOs:

  • Add GIFs & docs

References overview: