├── .gitignore ├── LICENSE ├── README.md ├── secbox ├── .gitignore ├── apkextract │ ├── __init__.py │ ├── adb_dump_app.py │ └── check_adb.py ├── app │ ├── __init__.py │ ├── actionbox.py │ └── secbox.py ├── main.py ├── reveng │ ├── __init__.py │ └── apktool_wrapper.py ├── sign │ ├── __init__.py │ ├── key.keystore │ └── sign_app.py └── tool │ └── apktool.jar └── setup.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeziellago/SecBox/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeziellago/SecBox/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeziellago/SecBox/HEAD/README.md -------------------------------------------------------------------------------- /secbox/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeziellago/SecBox/HEAD/secbox/.gitignore -------------------------------------------------------------------------------- /secbox/apkextract/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeziellago/SecBox/HEAD/secbox/apkextract/__init__.py -------------------------------------------------------------------------------- /secbox/apkextract/adb_dump_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeziellago/SecBox/HEAD/secbox/apkextract/adb_dump_app.py -------------------------------------------------------------------------------- /secbox/apkextract/check_adb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeziellago/SecBox/HEAD/secbox/apkextract/check_adb.py -------------------------------------------------------------------------------- /secbox/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeziellago/SecBox/HEAD/secbox/app/__init__.py -------------------------------------------------------------------------------- /secbox/app/actionbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeziellago/SecBox/HEAD/secbox/app/actionbox.py -------------------------------------------------------------------------------- /secbox/app/secbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeziellago/SecBox/HEAD/secbox/app/secbox.py -------------------------------------------------------------------------------- /secbox/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeziellago/SecBox/HEAD/secbox/main.py -------------------------------------------------------------------------------- /secbox/reveng/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeziellago/SecBox/HEAD/secbox/reveng/__init__.py -------------------------------------------------------------------------------- /secbox/reveng/apktool_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeziellago/SecBox/HEAD/secbox/reveng/apktool_wrapper.py -------------------------------------------------------------------------------- /secbox/sign/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeziellago/SecBox/HEAD/secbox/sign/__init__.py -------------------------------------------------------------------------------- /secbox/sign/key.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeziellago/SecBox/HEAD/secbox/sign/key.keystore -------------------------------------------------------------------------------- /secbox/sign/sign_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeziellago/SecBox/HEAD/secbox/sign/sign_app.py -------------------------------------------------------------------------------- /secbox/tool/apktool.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeziellago/SecBox/HEAD/secbox/tool/apktool.jar -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeziellago/SecBox/HEAD/setup.sh --------------------------------------------------------------------------------