├── .gitignore ├── .gitmodules ├── Android.mk ├── README.md ├── cred.c ├── cred.h ├── kallsyms.c ├── kallsyms.h ├── main.c ├── mm.c ├── mm.h ├── ptmx.c └── ptmx.h /.gitignore: -------------------------------------------------------------------------------- 1 | libs 2 | obj 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiikezoe/android_run_root_shell/HEAD/.gitmodules -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiikezoe/android_run_root_shell/HEAD/Android.mk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiikezoe/android_run_root_shell/HEAD/README.md -------------------------------------------------------------------------------- /cred.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiikezoe/android_run_root_shell/HEAD/cred.c -------------------------------------------------------------------------------- /cred.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiikezoe/android_run_root_shell/HEAD/cred.h -------------------------------------------------------------------------------- /kallsyms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiikezoe/android_run_root_shell/HEAD/kallsyms.c -------------------------------------------------------------------------------- /kallsyms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiikezoe/android_run_root_shell/HEAD/kallsyms.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiikezoe/android_run_root_shell/HEAD/main.c -------------------------------------------------------------------------------- /mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiikezoe/android_run_root_shell/HEAD/mm.c -------------------------------------------------------------------------------- /mm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiikezoe/android_run_root_shell/HEAD/mm.h -------------------------------------------------------------------------------- /ptmx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiikezoe/android_run_root_shell/HEAD/ptmx.c -------------------------------------------------------------------------------- /ptmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiikezoe/android_run_root_shell/HEAD/ptmx.h --------------------------------------------------------------------------------