├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── include ├── backdoor.h ├── config.h ├── getdents.h ├── give_root.h ├── hooks.h ├── module_hide.h └── utils.h ├── scripts ├── config.sh ├── dependencies.sh └── install.sh ├── src ├── backdoor.c ├── getdents.c ├── give_root.c ├── hooks.c ├── main.c └── module_hide.c └── userland ├── Makefile └── client.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R3tr074/brokepkg/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R3tr074/brokepkg/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R3tr074/brokepkg/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R3tr074/brokepkg/HEAD/README.md -------------------------------------------------------------------------------- /include/backdoor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R3tr074/brokepkg/HEAD/include/backdoor.h -------------------------------------------------------------------------------- /include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R3tr074/brokepkg/HEAD/include/config.h -------------------------------------------------------------------------------- /include/getdents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R3tr074/brokepkg/HEAD/include/getdents.h -------------------------------------------------------------------------------- /include/give_root.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R3tr074/brokepkg/HEAD/include/give_root.h -------------------------------------------------------------------------------- /include/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R3tr074/brokepkg/HEAD/include/hooks.h -------------------------------------------------------------------------------- /include/module_hide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R3tr074/brokepkg/HEAD/include/module_hide.h -------------------------------------------------------------------------------- /include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R3tr074/brokepkg/HEAD/include/utils.h -------------------------------------------------------------------------------- /scripts/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R3tr074/brokepkg/HEAD/scripts/config.sh -------------------------------------------------------------------------------- /scripts/dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R3tr074/brokepkg/HEAD/scripts/dependencies.sh -------------------------------------------------------------------------------- /scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R3tr074/brokepkg/HEAD/scripts/install.sh -------------------------------------------------------------------------------- /src/backdoor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R3tr074/brokepkg/HEAD/src/backdoor.c -------------------------------------------------------------------------------- /src/getdents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R3tr074/brokepkg/HEAD/src/getdents.c -------------------------------------------------------------------------------- /src/give_root.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R3tr074/brokepkg/HEAD/src/give_root.c -------------------------------------------------------------------------------- /src/hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R3tr074/brokepkg/HEAD/src/hooks.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R3tr074/brokepkg/HEAD/src/main.c -------------------------------------------------------------------------------- /src/module_hide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R3tr074/brokepkg/HEAD/src/module_hide.c -------------------------------------------------------------------------------- /userland/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R3tr074/brokepkg/HEAD/userland/Makefile -------------------------------------------------------------------------------- /userland/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R3tr074/brokepkg/HEAD/userland/client.c --------------------------------------------------------------------------------