├── .gitignore ├── AndroidManifest.xml ├── HOWTO ├── LICENSE ├── default.properties ├── helper ├── Makefile ├── helper.c └── static_agcc ├── libs └── .KEEP ├── native └── .KEEP ├── proguard.cfg ├── res ├── drawable-hdpi │ └── icon.png ├── drawable-ldpi │ └── icon.png ├── drawable-mdpi │ └── icon.png ├── layout │ └── .KEEP ├── raw │ └── helper.bin └── values │ └── strings.xml └── src └── com └── unrevoked └── zysploit ├── AsRoot.java ├── Receiver.java └── Zysploit.java /.gitignore: -------------------------------------------------------------------------------- 1 | local.properties 2 | -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unrevoked/zysploit/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /HOWTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unrevoked/zysploit/HEAD/HOWTO -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unrevoked/zysploit/HEAD/LICENSE -------------------------------------------------------------------------------- /default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unrevoked/zysploit/HEAD/default.properties -------------------------------------------------------------------------------- /helper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unrevoked/zysploit/HEAD/helper/Makefile -------------------------------------------------------------------------------- /helper/helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unrevoked/zysploit/HEAD/helper/helper.c -------------------------------------------------------------------------------- /helper/static_agcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unrevoked/zysploit/HEAD/helper/static_agcc -------------------------------------------------------------------------------- /libs/.KEEP: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /native/.KEEP: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unrevoked/zysploit/HEAD/proguard.cfg -------------------------------------------------------------------------------- /res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unrevoked/zysploit/HEAD/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unrevoked/zysploit/HEAD/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unrevoked/zysploit/HEAD/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /res/layout/.KEEP: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /res/raw/helper.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unrevoked/zysploit/HEAD/res/raw/helper.bin -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unrevoked/zysploit/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /src/com/unrevoked/zysploit/AsRoot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unrevoked/zysploit/HEAD/src/com/unrevoked/zysploit/AsRoot.java -------------------------------------------------------------------------------- /src/com/unrevoked/zysploit/Receiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unrevoked/zysploit/HEAD/src/com/unrevoked/zysploit/Receiver.java -------------------------------------------------------------------------------- /src/com/unrevoked/zysploit/Zysploit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unrevoked/zysploit/HEAD/src/com/unrevoked/zysploit/Zysploit.java --------------------------------------------------------------------------------