├── .gitignore ├── .vscode └── settings.json ├── LICENSE.md ├── Makefile ├── README.md ├── lib ├── Makefile ├── libkextrw.c └── libkextrw.h ├── misc └── Info.plist ├── src ├── KextRW.cpp ├── KextRW.h ├── KextRWUserClient.cpp ├── KextRWUserClient.h ├── kmod.cpp ├── kpi.h ├── routines.S └── routines.h └── tests ├── Makefile ├── entitlements.plist └── kextrw_test.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfiecg24/KextRW/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "clangd.fallbackFlags": [ 3 | "-I${workspaceFolder}/build/include", 4 | ], 5 | } -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfiecg24/KextRW/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfiecg24/KextRW/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfiecg24/KextRW/HEAD/README.md -------------------------------------------------------------------------------- /lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfiecg24/KextRW/HEAD/lib/Makefile -------------------------------------------------------------------------------- /lib/libkextrw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfiecg24/KextRW/HEAD/lib/libkextrw.c -------------------------------------------------------------------------------- /lib/libkextrw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfiecg24/KextRW/HEAD/lib/libkextrw.h -------------------------------------------------------------------------------- /misc/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfiecg24/KextRW/HEAD/misc/Info.plist -------------------------------------------------------------------------------- /src/KextRW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfiecg24/KextRW/HEAD/src/KextRW.cpp -------------------------------------------------------------------------------- /src/KextRW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfiecg24/KextRW/HEAD/src/KextRW.h -------------------------------------------------------------------------------- /src/KextRWUserClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfiecg24/KextRW/HEAD/src/KextRWUserClient.cpp -------------------------------------------------------------------------------- /src/KextRWUserClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfiecg24/KextRW/HEAD/src/KextRWUserClient.h -------------------------------------------------------------------------------- /src/kmod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfiecg24/KextRW/HEAD/src/kmod.cpp -------------------------------------------------------------------------------- /src/kpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfiecg24/KextRW/HEAD/src/kpi.h -------------------------------------------------------------------------------- /src/routines.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfiecg24/KextRW/HEAD/src/routines.S -------------------------------------------------------------------------------- /src/routines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfiecg24/KextRW/HEAD/src/routines.h -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfiecg24/KextRW/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfiecg24/KextRW/HEAD/tests/entitlements.plist -------------------------------------------------------------------------------- /tests/kextrw_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfiecg24/KextRW/HEAD/tests/kextrw_test.c --------------------------------------------------------------------------------