Skip to content

Matrix-Username/Shadow-Fiend-Hook

Repository files navigation

Shadow Fiend Hook

Frame 48

Lightweight and powerful Android app hooking tool

Features

  • Support Android 5.0 - 15 Beta2 (API level 21 - 35)
  • Support armeabi-v7a, arm64-v8a, x86, x86-64, riscv64
  • Low detection threshold for reverse engineering
  • Kotlin style hooking

Usage

Include the dependency in your build.gradle file

dependencies {
    implementation ("com.skiy.sf:hook:1.0")
}

Intercepting a method before it is executed

OkHttpClient::class.java.getDeclaredMethod("newCall", Request::class.java) beforeMethodCalled { interceptedParams ->
   println(interceptedParams.args)
}