├── LICENSE ├── README.md ├── Resources ├── Exploit.png ├── Screenshot_01.png └── Screenshot_02.png ├── debug.jks ├── exploit.py ├── ic_launcher.png ├── install.sh ├── installjava ├── popMods ├── AndroidManifest.xml ├── apktool.yml ├── original │ ├── AndroidManifest.xml │ └── META-INF │ │ ├── CERT.RSA │ │ ├── CERT.SF │ │ └── MANIFEST.MF ├── res │ ├── drawable-hdpi-v4 │ │ ├── ic_launcher.png │ │ ├── ic_launcher_background.png │ │ └── ic_launcher_round.png │ ├── drawable-mdpi-v4 │ │ ├── ic_launcher.png │ │ ├── ic_launcher_bacground.png │ │ └── ic_launcher_round.png │ ├── drawable-xhdpi-v4 │ │ ├── ic_launcher.png │ │ ├── ic_launcher_background.png │ │ └── ic_launcher_round.png │ ├── drawable-xxhdpi-v4 │ │ ├── ic_launcher.png │ │ ├── ic_launcher_background.png │ │ └── ic_launcher_round.png │ ├── layout │ │ └── main.xml │ ├── values-v21 │ │ └── styles.xml │ └── values │ │ ├── ids.xml │ │ ├── public.xml │ │ ├── strings.xml │ │ └── styles.xml ├── resources.arsc └── smali │ ├── adrt │ ├── ADRTLogCatReader.smali │ └── ADRTSender.smali │ └── com │ └── popmods │ └── exploit │ ├── BootReceiver.smali │ ├── BuildConfig.smali │ ├── MainActivity.smali │ ├── MyService$100000000.smali │ ├── MyService.smali │ ├── R$attr.smali │ ├── R$drawable.smali │ ├── R$id.smali │ ├── R$layout.smali │ ├── R$string.smali │ ├── R$style.smali │ └── R.smali └── ubersigner.jar /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Exploit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/Resources/Exploit.png -------------------------------------------------------------------------------- /Resources/Screenshot_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/Resources/Screenshot_01.png -------------------------------------------------------------------------------- /Resources/Screenshot_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/Resources/Screenshot_02.png -------------------------------------------------------------------------------- /debug.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/debug.jks -------------------------------------------------------------------------------- /exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/exploit.py -------------------------------------------------------------------------------- /ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/ic_launcher.png -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/install.sh -------------------------------------------------------------------------------- /installjava: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/installjava -------------------------------------------------------------------------------- /popMods/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/popMods/AndroidManifest.xml -------------------------------------------------------------------------------- /popMods/apktool.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/popMods/apktool.yml -------------------------------------------------------------------------------- /popMods/original/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/popMods/original/AndroidManifest.xml -------------------------------------------------------------------------------- /popMods/original/META-INF/CERT.RSA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/popMods/original/META-INF/CERT.RSA -------------------------------------------------------------------------------- /popMods/original/META-INF/CERT.SF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/popMods/original/META-INF/CERT.SF -------------------------------------------------------------------------------- /popMods/original/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/popMods/original/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /popMods/res/drawable-hdpi-v4/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/popMods/res/drawable-hdpi-v4/ic_launcher.png -------------------------------------------------------------------------------- /popMods/res/drawable-hdpi-v4/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/popMods/res/drawable-hdpi-v4/ic_launcher_background.png -------------------------------------------------------------------------------- /popMods/res/drawable-hdpi-v4/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/popMods/res/drawable-hdpi-v4/ic_launcher_round.png -------------------------------------------------------------------------------- /popMods/res/drawable-mdpi-v4/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/popMods/res/drawable-mdpi-v4/ic_launcher.png -------------------------------------------------------------------------------- /popMods/res/drawable-mdpi-v4/ic_launcher_bacground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/popMods/res/drawable-mdpi-v4/ic_launcher_bacground.png -------------------------------------------------------------------------------- /popMods/res/drawable-mdpi-v4/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/popMods/res/drawable-mdpi-v4/ic_launcher_round.png -------------------------------------------------------------------------------- /popMods/res/drawable-xhdpi-v4/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/popMods/res/drawable-xhdpi-v4/ic_launcher.png -------------------------------------------------------------------------------- /popMods/res/drawable-xhdpi-v4/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/popMods/res/drawable-xhdpi-v4/ic_launcher_background.png -------------------------------------------------------------------------------- /popMods/res/drawable-xhdpi-v4/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/popMods/res/drawable-xhdpi-v4/ic_launcher_round.png -------------------------------------------------------------------------------- /popMods/res/drawable-xxhdpi-v4/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/popMods/res/drawable-xxhdpi-v4/ic_launcher.png -------------------------------------------------------------------------------- /popMods/res/drawable-xxhdpi-v4/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/popMods/res/drawable-xxhdpi-v4/ic_launcher_background.png -------------------------------------------------------------------------------- /popMods/res/drawable-xxhdpi-v4/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/popMods/res/drawable-xxhdpi-v4/ic_launcher_round.png -------------------------------------------------------------------------------- /popMods/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/popMods/res/layout/main.xml -------------------------------------------------------------------------------- /popMods/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/popMods/res/values-v21/styles.xml -------------------------------------------------------------------------------- /popMods/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/popMods/res/values/ids.xml -------------------------------------------------------------------------------- /popMods/res/values/public.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/popMods/res/values/public.xml -------------------------------------------------------------------------------- /popMods/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/popMods/res/values/strings.xml -------------------------------------------------------------------------------- /popMods/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/popMods/res/values/styles.xml -------------------------------------------------------------------------------- /popMods/resources.arsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/popMods/resources.arsc -------------------------------------------------------------------------------- /popMods/smali/adrt/ADRTLogCatReader.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/popMods/smali/adrt/ADRTLogCatReader.smali -------------------------------------------------------------------------------- /popMods/smali/adrt/ADRTSender.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/popMods/smali/adrt/ADRTSender.smali -------------------------------------------------------------------------------- /popMods/smali/com/popmods/exploit/BootReceiver.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/popMods/smali/com/popmods/exploit/BootReceiver.smali -------------------------------------------------------------------------------- /popMods/smali/com/popmods/exploit/BuildConfig.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/popMods/smali/com/popmods/exploit/BuildConfig.smali -------------------------------------------------------------------------------- /popMods/smali/com/popmods/exploit/MainActivity.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/popMods/smali/com/popmods/exploit/MainActivity.smali -------------------------------------------------------------------------------- /popMods/smali/com/popmods/exploit/MyService$100000000.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/popMods/smali/com/popmods/exploit/MyService$100000000.smali -------------------------------------------------------------------------------- /popMods/smali/com/popmods/exploit/MyService.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/popMods/smali/com/popmods/exploit/MyService.smali -------------------------------------------------------------------------------- /popMods/smali/com/popmods/exploit/R$attr.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/popMods/smali/com/popmods/exploit/R$attr.smali -------------------------------------------------------------------------------- /popMods/smali/com/popmods/exploit/R$drawable.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/popMods/smali/com/popmods/exploit/R$drawable.smali -------------------------------------------------------------------------------- /popMods/smali/com/popmods/exploit/R$id.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/popMods/smali/com/popmods/exploit/R$id.smali -------------------------------------------------------------------------------- /popMods/smali/com/popmods/exploit/R$layout.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/popMods/smali/com/popmods/exploit/R$layout.smali -------------------------------------------------------------------------------- /popMods/smali/com/popmods/exploit/R$string.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/popMods/smali/com/popmods/exploit/R$string.smali -------------------------------------------------------------------------------- /popMods/smali/com/popmods/exploit/R$style.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/popMods/smali/com/popmods/exploit/R$style.smali -------------------------------------------------------------------------------- /popMods/smali/com/popmods/exploit/R.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/popMods/smali/com/popmods/exploit/R.smali -------------------------------------------------------------------------------- /ubersigner.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeye0013/Exploit/HEAD/ubersigner.jar --------------------------------------------------------------------------------