├── .gitattributes ├── .gitignore ├── DEFCON23 ├── O&D - Android Reverse Engineering.pdf ├── README.md └── challenges │ ├── defensive │ ├── crackmes │ │ ├── four │ │ │ └── AllMixedUp.apk │ │ ├── garage4hackers │ │ │ ├── GETSECRET.apk │ │ │ ├── SENDSECRET.apk │ │ │ └── readme.md │ │ ├── one │ │ │ └── DontSmokeCrack.apk │ │ ├── three │ │ │ └── GoAheadCrackMe.apk │ │ └── two │ │ │ └── DontCrackMeBro.apk │ ├── malware │ │ ├── README.md │ │ └── def_examples.zip │ ├── packers │ │ ├── bangcle │ │ │ └── nh.four.apk │ │ ├── liapp │ │ │ └── 411ecbaa48fa8dd2aa1df6f716f3ff1afdfb926e.apk │ │ └── pangxie │ │ │ └── com.playgame.good.tankwars3D.apk │ └── somethingware │ │ ├── 1350f7c84710e373f97e27d6880ca9a6ed065d4a.apk │ │ ├── 42b25b60aa7d6d9f0b388c10a45e8a8f8c1fc718.apk │ │ ├── c14ed08b2ffd360c937ed3f83bf26c2887710da1.apk │ │ └── e99dd3229dc9ff70f6e768342ca27d984e796f1a.apk │ └── offensive │ └── getsuperserial │ ├── FWUpgrade.apk │ └── fotabinder └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednaga/training/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | #*# 3 | .DS_Store -------------------------------------------------------------------------------- /DEFCON23/O&D - Android Reverse Engineering.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednaga/training/HEAD/DEFCON23/O&D - Android Reverse Engineering.pdf -------------------------------------------------------------------------------- /DEFCON23/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednaga/training/HEAD/DEFCON23/README.md -------------------------------------------------------------------------------- /DEFCON23/challenges/defensive/crackmes/four/AllMixedUp.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednaga/training/HEAD/DEFCON23/challenges/defensive/crackmes/four/AllMixedUp.apk -------------------------------------------------------------------------------- /DEFCON23/challenges/defensive/crackmes/garage4hackers/GETSECRET.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednaga/training/HEAD/DEFCON23/challenges/defensive/crackmes/garage4hackers/GETSECRET.apk -------------------------------------------------------------------------------- /DEFCON23/challenges/defensive/crackmes/garage4hackers/SENDSECRET.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednaga/training/HEAD/DEFCON23/challenges/defensive/crackmes/garage4hackers/SENDSECRET.apk -------------------------------------------------------------------------------- /DEFCON23/challenges/defensive/crackmes/garage4hackers/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednaga/training/HEAD/DEFCON23/challenges/defensive/crackmes/garage4hackers/readme.md -------------------------------------------------------------------------------- /DEFCON23/challenges/defensive/crackmes/one/DontSmokeCrack.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednaga/training/HEAD/DEFCON23/challenges/defensive/crackmes/one/DontSmokeCrack.apk -------------------------------------------------------------------------------- /DEFCON23/challenges/defensive/crackmes/three/GoAheadCrackMe.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednaga/training/HEAD/DEFCON23/challenges/defensive/crackmes/three/GoAheadCrackMe.apk -------------------------------------------------------------------------------- /DEFCON23/challenges/defensive/crackmes/two/DontCrackMeBro.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednaga/training/HEAD/DEFCON23/challenges/defensive/crackmes/two/DontCrackMeBro.apk -------------------------------------------------------------------------------- /DEFCON23/challenges/defensive/malware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednaga/training/HEAD/DEFCON23/challenges/defensive/malware/README.md -------------------------------------------------------------------------------- /DEFCON23/challenges/defensive/malware/def_examples.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednaga/training/HEAD/DEFCON23/challenges/defensive/malware/def_examples.zip -------------------------------------------------------------------------------- /DEFCON23/challenges/defensive/packers/bangcle/nh.four.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednaga/training/HEAD/DEFCON23/challenges/defensive/packers/bangcle/nh.four.apk -------------------------------------------------------------------------------- /DEFCON23/challenges/defensive/packers/liapp/411ecbaa48fa8dd2aa1df6f716f3ff1afdfb926e.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednaga/training/HEAD/DEFCON23/challenges/defensive/packers/liapp/411ecbaa48fa8dd2aa1df6f716f3ff1afdfb926e.apk -------------------------------------------------------------------------------- /DEFCON23/challenges/defensive/packers/pangxie/com.playgame.good.tankwars3D.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednaga/training/HEAD/DEFCON23/challenges/defensive/packers/pangxie/com.playgame.good.tankwars3D.apk -------------------------------------------------------------------------------- /DEFCON23/challenges/defensive/somethingware/1350f7c84710e373f97e27d6880ca9a6ed065d4a.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednaga/training/HEAD/DEFCON23/challenges/defensive/somethingware/1350f7c84710e373f97e27d6880ca9a6ed065d4a.apk -------------------------------------------------------------------------------- /DEFCON23/challenges/defensive/somethingware/42b25b60aa7d6d9f0b388c10a45e8a8f8c1fc718.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednaga/training/HEAD/DEFCON23/challenges/defensive/somethingware/42b25b60aa7d6d9f0b388c10a45e8a8f8c1fc718.apk -------------------------------------------------------------------------------- /DEFCON23/challenges/defensive/somethingware/c14ed08b2ffd360c937ed3f83bf26c2887710da1.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednaga/training/HEAD/DEFCON23/challenges/defensive/somethingware/c14ed08b2ffd360c937ed3f83bf26c2887710da1.apk -------------------------------------------------------------------------------- /DEFCON23/challenges/defensive/somethingware/e99dd3229dc9ff70f6e768342ca27d984e796f1a.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednaga/training/HEAD/DEFCON23/challenges/defensive/somethingware/e99dd3229dc9ff70f6e768342ca27d984e796f1a.apk -------------------------------------------------------------------------------- /DEFCON23/challenges/offensive/getsuperserial/FWUpgrade.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednaga/training/HEAD/DEFCON23/challenges/offensive/getsuperserial/FWUpgrade.apk -------------------------------------------------------------------------------- /DEFCON23/challenges/offensive/getsuperserial/fotabinder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednaga/training/HEAD/DEFCON23/challenges/offensive/getsuperserial/fotabinder -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednaga/training/HEAD/README.md --------------------------------------------------------------------------------