├── .gitignore ├── LICENSE ├── README.md ├── andff ├── __init__.py ├── compile │ ├── bitmap.js │ ├── config.js │ ├── index.js │ ├── instrumenter.js │ ├── mutator.js │ ├── queue.js │ ├── stages.js │ └── utils.js ├── implement │ ├── afl.py │ ├── frida.py │ ├── fuzz.py │ ├── interface.py │ └── logger.py ├── setting.py └── template │ ├── native.js │ └── utils.js ├── andff_demo.gif ├── andff_demo.mp4 ├── fuzz.py ├── makefile ├── requirements.txt └── tests ├── aff-test.apk ├── config.json ├── config_01.json ├── config_wechat.json └── seeds └── 1 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhyt/AndroidFridaFuzz/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhyt/AndroidFridaFuzz/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhyt/AndroidFridaFuzz/HEAD/README.md -------------------------------------------------------------------------------- /andff/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhyt/AndroidFridaFuzz/HEAD/andff/__init__.py -------------------------------------------------------------------------------- /andff/compile/bitmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhyt/AndroidFridaFuzz/HEAD/andff/compile/bitmap.js -------------------------------------------------------------------------------- /andff/compile/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhyt/AndroidFridaFuzz/HEAD/andff/compile/config.js -------------------------------------------------------------------------------- /andff/compile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhyt/AndroidFridaFuzz/HEAD/andff/compile/index.js -------------------------------------------------------------------------------- /andff/compile/instrumenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhyt/AndroidFridaFuzz/HEAD/andff/compile/instrumenter.js -------------------------------------------------------------------------------- /andff/compile/mutator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhyt/AndroidFridaFuzz/HEAD/andff/compile/mutator.js -------------------------------------------------------------------------------- /andff/compile/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhyt/AndroidFridaFuzz/HEAD/andff/compile/queue.js -------------------------------------------------------------------------------- /andff/compile/stages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhyt/AndroidFridaFuzz/HEAD/andff/compile/stages.js -------------------------------------------------------------------------------- /andff/compile/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhyt/AndroidFridaFuzz/HEAD/andff/compile/utils.js -------------------------------------------------------------------------------- /andff/implement/afl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhyt/AndroidFridaFuzz/HEAD/andff/implement/afl.py -------------------------------------------------------------------------------- /andff/implement/frida.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhyt/AndroidFridaFuzz/HEAD/andff/implement/frida.py -------------------------------------------------------------------------------- /andff/implement/fuzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhyt/AndroidFridaFuzz/HEAD/andff/implement/fuzz.py -------------------------------------------------------------------------------- /andff/implement/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhyt/AndroidFridaFuzz/HEAD/andff/implement/interface.py -------------------------------------------------------------------------------- /andff/implement/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhyt/AndroidFridaFuzz/HEAD/andff/implement/logger.py -------------------------------------------------------------------------------- /andff/setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhyt/AndroidFridaFuzz/HEAD/andff/setting.py -------------------------------------------------------------------------------- /andff/template/native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhyt/AndroidFridaFuzz/HEAD/andff/template/native.js -------------------------------------------------------------------------------- /andff/template/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhyt/AndroidFridaFuzz/HEAD/andff/template/utils.js -------------------------------------------------------------------------------- /andff_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhyt/AndroidFridaFuzz/HEAD/andff_demo.gif -------------------------------------------------------------------------------- /andff_demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhyt/AndroidFridaFuzz/HEAD/andff_demo.mp4 -------------------------------------------------------------------------------- /fuzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhyt/AndroidFridaFuzz/HEAD/fuzz.py -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhyt/AndroidFridaFuzz/HEAD/makefile -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhyt/AndroidFridaFuzz/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/aff-test.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhyt/AndroidFridaFuzz/HEAD/tests/aff-test.apk -------------------------------------------------------------------------------- /tests/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhyt/AndroidFridaFuzz/HEAD/tests/config.json -------------------------------------------------------------------------------- /tests/config_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhyt/AndroidFridaFuzz/HEAD/tests/config_01.json -------------------------------------------------------------------------------- /tests/config_wechat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhyt/AndroidFridaFuzz/HEAD/tests/config_wechat.json -------------------------------------------------------------------------------- /tests/seeds/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhyt/AndroidFridaFuzz/HEAD/tests/seeds/1 --------------------------------------------------------------------------------