├── Android.mk ├── Makefile ├── README.md ├── dirtycow.c ├── load.c ├── reverse.c ├── shared.c ├── shared.h ├── shell.as ├── shellcode.h └── stage.c /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddierice/trident/HEAD/Android.mk -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddierice/trident/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddierice/trident/HEAD/README.md -------------------------------------------------------------------------------- /dirtycow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddierice/trident/HEAD/dirtycow.c -------------------------------------------------------------------------------- /load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddierice/trident/HEAD/load.c -------------------------------------------------------------------------------- /reverse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddierice/trident/HEAD/reverse.c -------------------------------------------------------------------------------- /shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddierice/trident/HEAD/shared.c -------------------------------------------------------------------------------- /shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddierice/trident/HEAD/shared.h -------------------------------------------------------------------------------- /shell.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddierice/trident/HEAD/shell.as -------------------------------------------------------------------------------- /shellcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddierice/trident/HEAD/shellcode.h -------------------------------------------------------------------------------- /stage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddierice/trident/HEAD/stage.c --------------------------------------------------------------------------------