├── .gitignore ├── .gitmodules ├── Makefile ├── README.md ├── ent.plist ├── include └── .gitkeep └── src ├── batch.h ├── batch.m ├── libbootkit ├── boot.c ├── boot.h ├── config.h ├── dfu.c ├── dfu.h ├── libbootkit.h ├── log.c ├── log.h ├── ops.c ├── ops.h ├── payload.h ├── payload_watch.h ├── payloads │ ├── payload.S │ └── payload_watch.S ├── protocol.c └── protocol.h ├── main.c ├── utils.c └── utils.h /.gitignore: -------------------------------------------------------------------------------- 1 | /static-libs 2 | /build 3 | .DS_Store 4 | /include/IOKit 5 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/checkm8_bootkit/HEAD/.gitmodules -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/checkm8_bootkit/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/checkm8_bootkit/HEAD/README.md -------------------------------------------------------------------------------- /ent.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/checkm8_bootkit/HEAD/ent.plist -------------------------------------------------------------------------------- /include/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/batch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/checkm8_bootkit/HEAD/src/batch.h -------------------------------------------------------------------------------- /src/batch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/checkm8_bootkit/HEAD/src/batch.m -------------------------------------------------------------------------------- /src/libbootkit/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/checkm8_bootkit/HEAD/src/libbootkit/boot.c -------------------------------------------------------------------------------- /src/libbootkit/boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/checkm8_bootkit/HEAD/src/libbootkit/boot.h -------------------------------------------------------------------------------- /src/libbootkit/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/checkm8_bootkit/HEAD/src/libbootkit/config.h -------------------------------------------------------------------------------- /src/libbootkit/dfu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/checkm8_bootkit/HEAD/src/libbootkit/dfu.c -------------------------------------------------------------------------------- /src/libbootkit/dfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/checkm8_bootkit/HEAD/src/libbootkit/dfu.h -------------------------------------------------------------------------------- /src/libbootkit/libbootkit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/checkm8_bootkit/HEAD/src/libbootkit/libbootkit.h -------------------------------------------------------------------------------- /src/libbootkit/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/checkm8_bootkit/HEAD/src/libbootkit/log.c -------------------------------------------------------------------------------- /src/libbootkit/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/checkm8_bootkit/HEAD/src/libbootkit/log.h -------------------------------------------------------------------------------- /src/libbootkit/ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/checkm8_bootkit/HEAD/src/libbootkit/ops.c -------------------------------------------------------------------------------- /src/libbootkit/ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/checkm8_bootkit/HEAD/src/libbootkit/ops.h -------------------------------------------------------------------------------- /src/libbootkit/payload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/checkm8_bootkit/HEAD/src/libbootkit/payload.h -------------------------------------------------------------------------------- /src/libbootkit/payload_watch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/checkm8_bootkit/HEAD/src/libbootkit/payload_watch.h -------------------------------------------------------------------------------- /src/libbootkit/payloads/payload.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/checkm8_bootkit/HEAD/src/libbootkit/payloads/payload.S -------------------------------------------------------------------------------- /src/libbootkit/payloads/payload_watch.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/checkm8_bootkit/HEAD/src/libbootkit/payloads/payload_watch.S -------------------------------------------------------------------------------- /src/libbootkit/protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/checkm8_bootkit/HEAD/src/libbootkit/protocol.c -------------------------------------------------------------------------------- /src/libbootkit/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/checkm8_bootkit/HEAD/src/libbootkit/protocol.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/checkm8_bootkit/HEAD/src/main.c -------------------------------------------------------------------------------- /src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/checkm8_bootkit/HEAD/src/utils.c -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/checkm8_bootkit/HEAD/src/utils.h --------------------------------------------------------------------------------