├── .gitignore ├── LICENSE ├── README.md ├── data ├── bin │ ├── BIN.md │ └── ubersigner.jar ├── key │ ├── KEY.md │ └── debug.jks ├── src │ ├── sara_menu.png │ └── src.md └── tmp │ ├── TMP.md │ ├── decrypter.apk │ ├── encrypter.apk │ ├── icon.png │ └── lockscreen.apk ├── install.sh ├── pyproject.toml ├── requirements.txt └── sara.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termuxhackers-id/SARA/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termuxhackers-id/SARA/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termuxhackers-id/SARA/HEAD/README.md -------------------------------------------------------------------------------- /data/bin/BIN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termuxhackers-id/SARA/HEAD/data/bin/BIN.md -------------------------------------------------------------------------------- /data/bin/ubersigner.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termuxhackers-id/SARA/HEAD/data/bin/ubersigner.jar -------------------------------------------------------------------------------- /data/key/KEY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termuxhackers-id/SARA/HEAD/data/key/KEY.md -------------------------------------------------------------------------------- /data/key/debug.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termuxhackers-id/SARA/HEAD/data/key/debug.jks -------------------------------------------------------------------------------- /data/src/sara_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termuxhackers-id/SARA/HEAD/data/src/sara_menu.png -------------------------------------------------------------------------------- /data/src/src.md: -------------------------------------------------------------------------------- 1 | ## SRC directories 2 | include files for README.md 3 | -------------------------------------------------------------------------------- /data/tmp/TMP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termuxhackers-id/SARA/HEAD/data/tmp/TMP.md -------------------------------------------------------------------------------- /data/tmp/decrypter.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termuxhackers-id/SARA/HEAD/data/tmp/decrypter.apk -------------------------------------------------------------------------------- /data/tmp/encrypter.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termuxhackers-id/SARA/HEAD/data/tmp/encrypter.apk -------------------------------------------------------------------------------- /data/tmp/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termuxhackers-id/SARA/HEAD/data/tmp/icon.png -------------------------------------------------------------------------------- /data/tmp/lockscreen.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termuxhackers-id/SARA/HEAD/data/tmp/lockscreen.apk -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termuxhackers-id/SARA/HEAD/install.sh -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termuxhackers-id/SARA/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Pillow 2 | requests -------------------------------------------------------------------------------- /sara.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termuxhackers-id/SARA/HEAD/sara.py --------------------------------------------------------------------------------