├── AntiFrida ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── dictionaries │ │ └── berndt.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── CMakeLists.txt │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── sg │ │ │ └── vantagepoint │ │ │ └── antifrida │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── cpp │ │ │ ├── bionic_asm.h │ │ │ ├── native-lib.cpp │ │ │ ├── pagemap.h │ │ │ └── syscall.S │ │ ├── java │ │ │ └── sg │ │ │ │ └── vantagepoint │ │ │ │ └── antifrida │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── sg │ │ └── vantagepoint │ │ └── antifrida │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle └── README.md /AntiFrida/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/AntiFrida/.gitignore -------------------------------------------------------------------------------- /AntiFrida/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/AntiFrida/.idea/compiler.xml -------------------------------------------------------------------------------- /AntiFrida/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/AntiFrida/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /AntiFrida/.idea/dictionaries/berndt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/AntiFrida/.idea/dictionaries/berndt.xml -------------------------------------------------------------------------------- /AntiFrida/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/AntiFrida/.idea/gradle.xml -------------------------------------------------------------------------------- /AntiFrida/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/AntiFrida/.idea/misc.xml -------------------------------------------------------------------------------- /AntiFrida/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/AntiFrida/.idea/modules.xml -------------------------------------------------------------------------------- /AntiFrida/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/AntiFrida/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /AntiFrida/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /AntiFrida/app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/AntiFrida/app/CMakeLists.txt -------------------------------------------------------------------------------- /AntiFrida/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/AntiFrida/app/build.gradle -------------------------------------------------------------------------------- /AntiFrida/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/AntiFrida/app/proguard-rules.pro -------------------------------------------------------------------------------- /AntiFrida/app/src/androidTest/java/sg/vantagepoint/antifrida/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/AntiFrida/app/src/androidTest/java/sg/vantagepoint/antifrida/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /AntiFrida/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/AntiFrida/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /AntiFrida/app/src/main/cpp/bionic_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/AntiFrida/app/src/main/cpp/bionic_asm.h -------------------------------------------------------------------------------- /AntiFrida/app/src/main/cpp/native-lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/AntiFrida/app/src/main/cpp/native-lib.cpp -------------------------------------------------------------------------------- /AntiFrida/app/src/main/cpp/pagemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/AntiFrida/app/src/main/cpp/pagemap.h -------------------------------------------------------------------------------- /AntiFrida/app/src/main/cpp/syscall.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/AntiFrida/app/src/main/cpp/syscall.S -------------------------------------------------------------------------------- /AntiFrida/app/src/main/java/sg/vantagepoint/antifrida/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/AntiFrida/app/src/main/java/sg/vantagepoint/antifrida/MainActivity.java -------------------------------------------------------------------------------- /AntiFrida/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/AntiFrida/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /AntiFrida/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/AntiFrida/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AntiFrida/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/AntiFrida/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AntiFrida/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/AntiFrida/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AntiFrida/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/AntiFrida/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AntiFrida/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/AntiFrida/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AntiFrida/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/AntiFrida/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AntiFrida/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/AntiFrida/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AntiFrida/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/AntiFrida/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AntiFrida/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/AntiFrida/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AntiFrida/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/AntiFrida/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AntiFrida/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/AntiFrida/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /AntiFrida/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/AntiFrida/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /AntiFrida/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/AntiFrida/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /AntiFrida/app/src/test/java/sg/vantagepoint/antifrida/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/AntiFrida/app/src/test/java/sg/vantagepoint/antifrida/ExampleUnitTest.java -------------------------------------------------------------------------------- /AntiFrida/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/AntiFrida/build.gradle -------------------------------------------------------------------------------- /AntiFrida/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/AntiFrida/gradle.properties -------------------------------------------------------------------------------- /AntiFrida/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/AntiFrida/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /AntiFrida/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/AntiFrida/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /AntiFrida/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/AntiFrida/gradlew -------------------------------------------------------------------------------- /AntiFrida/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/AntiFrida/gradlew.bat -------------------------------------------------------------------------------- /AntiFrida/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muellerberndt/frida-detection/HEAD/README.md --------------------------------------------------------------------------------