├── README.md ├── diagnostic_service.xcodeproj └── project.pbxproj └── diagnostic_service ├── exploit.c ├── exploit.h ├── kernel_code_exec.c ├── kernel_code_exec.h ├── kernel_symbols.c ├── kernel_symbols.h ├── logging.h ├── mac_policy.h ├── main.c ├── remote.h ├── remote.m ├── rootkit.c ├── rootkit.h ├── rootpipe_exploit.h ├── rootpipe_exploit.m ├── structures.h ├── trustedbsd.c ├── trustedbsd.h ├── utils.c └── utils.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/diagnostic_service/HEAD/README.md -------------------------------------------------------------------------------- /diagnostic_service.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/diagnostic_service/HEAD/diagnostic_service.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /diagnostic_service/exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/diagnostic_service/HEAD/diagnostic_service/exploit.c -------------------------------------------------------------------------------- /diagnostic_service/exploit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/diagnostic_service/HEAD/diagnostic_service/exploit.h -------------------------------------------------------------------------------- /diagnostic_service/kernel_code_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/diagnostic_service/HEAD/diagnostic_service/kernel_code_exec.c -------------------------------------------------------------------------------- /diagnostic_service/kernel_code_exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/diagnostic_service/HEAD/diagnostic_service/kernel_code_exec.h -------------------------------------------------------------------------------- /diagnostic_service/kernel_symbols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/diagnostic_service/HEAD/diagnostic_service/kernel_symbols.c -------------------------------------------------------------------------------- /diagnostic_service/kernel_symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/diagnostic_service/HEAD/diagnostic_service/kernel_symbols.h -------------------------------------------------------------------------------- /diagnostic_service/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/diagnostic_service/HEAD/diagnostic_service/logging.h -------------------------------------------------------------------------------- /diagnostic_service/mac_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/diagnostic_service/HEAD/diagnostic_service/mac_policy.h -------------------------------------------------------------------------------- /diagnostic_service/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/diagnostic_service/HEAD/diagnostic_service/main.c -------------------------------------------------------------------------------- /diagnostic_service/remote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/diagnostic_service/HEAD/diagnostic_service/remote.h -------------------------------------------------------------------------------- /diagnostic_service/remote.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/diagnostic_service/HEAD/diagnostic_service/remote.m -------------------------------------------------------------------------------- /diagnostic_service/rootkit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/diagnostic_service/HEAD/diagnostic_service/rootkit.c -------------------------------------------------------------------------------- /diagnostic_service/rootkit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/diagnostic_service/HEAD/diagnostic_service/rootkit.h -------------------------------------------------------------------------------- /diagnostic_service/rootpipe_exploit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/diagnostic_service/HEAD/diagnostic_service/rootpipe_exploit.h -------------------------------------------------------------------------------- /diagnostic_service/rootpipe_exploit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/diagnostic_service/HEAD/diagnostic_service/rootpipe_exploit.m -------------------------------------------------------------------------------- /diagnostic_service/structures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/diagnostic_service/HEAD/diagnostic_service/structures.h -------------------------------------------------------------------------------- /diagnostic_service/trustedbsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/diagnostic_service/HEAD/diagnostic_service/trustedbsd.c -------------------------------------------------------------------------------- /diagnostic_service/trustedbsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/diagnostic_service/HEAD/diagnostic_service/trustedbsd.h -------------------------------------------------------------------------------- /diagnostic_service/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/diagnostic_service/HEAD/diagnostic_service/utils.c -------------------------------------------------------------------------------- /diagnostic_service/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdbinit/diagnostic_service/HEAD/diagnostic_service/utils.h --------------------------------------------------------------------------------