├── LICENSE ├── adb.py ├── consts.py ├── exploit.py ├── scm.py ├── shellcode.S ├── symbols.py └── zero_dword.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laginimaineb/Alohamora/HEAD/LICENSE -------------------------------------------------------------------------------- /adb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laginimaineb/Alohamora/HEAD/adb.py -------------------------------------------------------------------------------- /consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laginimaineb/Alohamora/HEAD/consts.py -------------------------------------------------------------------------------- /exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laginimaineb/Alohamora/HEAD/exploit.py -------------------------------------------------------------------------------- /scm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laginimaineb/Alohamora/HEAD/scm.py -------------------------------------------------------------------------------- /shellcode.S: -------------------------------------------------------------------------------- 1 | .code 32 2 | 3 | -------------------------------------------------------------------------------- /symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laginimaineb/Alohamora/HEAD/symbols.py -------------------------------------------------------------------------------- /zero_dword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laginimaineb/Alohamora/HEAD/zero_dword.py --------------------------------------------------------------------------------