├── .gitignore ├── LICENSE ├── README.md ├── assets ├── screen.png └── screen1.png ├── frida-fuzzer ├── fuzz ├── bitmap.js ├── config.js ├── index.js ├── instrumentor.js ├── mutator.js ├── queue.js ├── stages.js └── utils.js ├── requirements.txt ├── system-config └── tests ├── app-debug.apk ├── libnative-lib.so ├── test.c ├── test_empty ├── test_empty.c ├── test_empty.js ├── test_java.js ├── test_java_callback.js ├── test_libxml2.js ├── test_linux64 ├── test_linux_x64.js └── test_ndk_x64.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/frida-fuzzer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/frida-fuzzer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/frida-fuzzer/HEAD/README.md -------------------------------------------------------------------------------- /assets/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/frida-fuzzer/HEAD/assets/screen.png -------------------------------------------------------------------------------- /assets/screen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/frida-fuzzer/HEAD/assets/screen1.png -------------------------------------------------------------------------------- /frida-fuzzer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/frida-fuzzer/HEAD/frida-fuzzer -------------------------------------------------------------------------------- /fuzz/bitmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/frida-fuzzer/HEAD/fuzz/bitmap.js -------------------------------------------------------------------------------- /fuzz/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/frida-fuzzer/HEAD/fuzz/config.js -------------------------------------------------------------------------------- /fuzz/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/frida-fuzzer/HEAD/fuzz/index.js -------------------------------------------------------------------------------- /fuzz/instrumentor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/frida-fuzzer/HEAD/fuzz/instrumentor.js -------------------------------------------------------------------------------- /fuzz/mutator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/frida-fuzzer/HEAD/fuzz/mutator.js -------------------------------------------------------------------------------- /fuzz/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/frida-fuzzer/HEAD/fuzz/queue.js -------------------------------------------------------------------------------- /fuzz/stages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/frida-fuzzer/HEAD/fuzz/stages.js -------------------------------------------------------------------------------- /fuzz/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/frida-fuzzer/HEAD/fuzz/utils.js -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | frida>=12.8.1 2 | -------------------------------------------------------------------------------- /system-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/frida-fuzzer/HEAD/system-config -------------------------------------------------------------------------------- /tests/app-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/frida-fuzzer/HEAD/tests/app-debug.apk -------------------------------------------------------------------------------- /tests/libnative-lib.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/frida-fuzzer/HEAD/tests/libnative-lib.so -------------------------------------------------------------------------------- /tests/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/frida-fuzzer/HEAD/tests/test.c -------------------------------------------------------------------------------- /tests/test_empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/frida-fuzzer/HEAD/tests/test_empty -------------------------------------------------------------------------------- /tests/test_empty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/frida-fuzzer/HEAD/tests/test_empty.c -------------------------------------------------------------------------------- /tests/test_empty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/frida-fuzzer/HEAD/tests/test_empty.js -------------------------------------------------------------------------------- /tests/test_java.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/frida-fuzzer/HEAD/tests/test_java.js -------------------------------------------------------------------------------- /tests/test_java_callback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/frida-fuzzer/HEAD/tests/test_java_callback.js -------------------------------------------------------------------------------- /tests/test_libxml2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/frida-fuzzer/HEAD/tests/test_libxml2.js -------------------------------------------------------------------------------- /tests/test_linux64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/frida-fuzzer/HEAD/tests/test_linux64 -------------------------------------------------------------------------------- /tests/test_linux_x64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/frida-fuzzer/HEAD/tests/test_linux_x64.js -------------------------------------------------------------------------------- /tests/test_ndk_x64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/frida-fuzzer/HEAD/tests/test_ndk_x64.js --------------------------------------------------------------------------------