├── .ctagsignore ├── .gitignore ├── .pylintrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── VERSION ├── decrypticon.py ├── example └── test_project │ ├── .gitignore │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── afjoseph │ │ │ └── test │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── afjoseph │ │ │ │ └── test │ │ │ │ ├── Cryptor.java │ │ │ │ ├── Encryptor.java │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.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 │ │ └── com │ │ └── afjoseph │ │ └── test │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── build.rb │ ├── dummy.keystore │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── hooks │ └── settings.gradle ├── requirements.txt ├── scripts ├── install_frida_server.rb ├── run_avd.sh └── run_test_suite.rb └── src ├── __init__.py ├── caller_info.py ├── error.py ├── frida_helper.py ├── hooker.js ├── invocation_processor.py ├── recorded_invocation.py ├── smali_class.py ├── smali_invocation.py ├── smali_line.py ├── smali_method.py ├── smali_parser.py └── util.py /.ctagsignore: -------------------------------------------------------------------------------- 1 | venv 2 | example 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/.pylintrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.0.3 2 | -------------------------------------------------------------------------------- /decrypticon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/decrypticon.py -------------------------------------------------------------------------------- /example/test_project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/example/test_project/.gitignore -------------------------------------------------------------------------------- /example/test_project/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /example/test_project/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/example/test_project/app/build.gradle -------------------------------------------------------------------------------- /example/test_project/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/example/test_project/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/test_project/app/src/androidTest/java/com/afjoseph/test/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/example/test_project/app/src/androidTest/java/com/afjoseph/test/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /example/test_project/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/example/test_project/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/test_project/app/src/main/java/com/afjoseph/test/Cryptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/example/test_project/app/src/main/java/com/afjoseph/test/Cryptor.java -------------------------------------------------------------------------------- /example/test_project/app/src/main/java/com/afjoseph/test/Encryptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/example/test_project/app/src/main/java/com/afjoseph/test/Encryptor.java -------------------------------------------------------------------------------- /example/test_project/app/src/main/java/com/afjoseph/test/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/example/test_project/app/src/main/java/com/afjoseph/test/MainActivity.java -------------------------------------------------------------------------------- /example/test_project/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/example/test_project/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /example/test_project/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/example/test_project/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /example/test_project/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/example/test_project/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /example/test_project/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/example/test_project/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /example/test_project/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/example/test_project/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /example/test_project/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/example/test_project/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/test_project/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/example/test_project/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/test_project/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/example/test_project/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/test_project/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/example/test_project/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/test_project/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/example/test_project/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/test_project/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/example/test_project/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/test_project/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/example/test_project/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/test_project/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/example/test_project/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/test_project/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/example/test_project/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/test_project/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/example/test_project/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/test_project/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/example/test_project/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /example/test_project/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/example/test_project/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/test_project/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/example/test_project/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/test_project/app/src/test/java/com/afjoseph/test/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/example/test_project/app/src/test/java/com/afjoseph/test/ExampleUnitTest.java -------------------------------------------------------------------------------- /example/test_project/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/example/test_project/build.gradle -------------------------------------------------------------------------------- /example/test_project/build.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/example/test_project/build.rb -------------------------------------------------------------------------------- /example/test_project/dummy.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/example/test_project/dummy.keystore -------------------------------------------------------------------------------- /example/test_project/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/example/test_project/gradle.properties -------------------------------------------------------------------------------- /example/test_project/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/example/test_project/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/test_project/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/example/test_project/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/test_project/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/example/test_project/gradlew -------------------------------------------------------------------------------- /example/test_project/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/example/test_project/gradlew.bat -------------------------------------------------------------------------------- /example/test_project/hooks: -------------------------------------------------------------------------------- 1 | Lcom/afjoseph/test/Cryptor;->get(III)Ljava/lang/String; 2 | -------------------------------------------------------------------------------- /example/test_project/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name='test' 2 | include ':app' 3 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/install_frida_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/scripts/install_frida_server.rb -------------------------------------------------------------------------------- /scripts/run_avd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/scripts/run_avd.sh -------------------------------------------------------------------------------- /scripts/run_test_suite.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/scripts/run_test_suite.rb -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/caller_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/src/caller_info.py -------------------------------------------------------------------------------- /src/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/src/error.py -------------------------------------------------------------------------------- /src/frida_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/src/frida_helper.py -------------------------------------------------------------------------------- /src/hooker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/src/hooker.js -------------------------------------------------------------------------------- /src/invocation_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/src/invocation_processor.py -------------------------------------------------------------------------------- /src/recorded_invocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/src/recorded_invocation.py -------------------------------------------------------------------------------- /src/smali_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/src/smali_class.py -------------------------------------------------------------------------------- /src/smali_invocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/src/smali_invocation.py -------------------------------------------------------------------------------- /src/smali_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/src/smali_line.py -------------------------------------------------------------------------------- /src/smali_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/src/smali_method.py -------------------------------------------------------------------------------- /src/smali_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/src/smali_parser.py -------------------------------------------------------------------------------- /src/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afjoseph/decrypticon/HEAD/src/util.py --------------------------------------------------------------------------------