├── .gitignore ├── .gitmodules ├── Makefile ├── README.md ├── fetch_kerncaches ├── kerneldec.cpp ├── mac_policy.h ├── mach-o_loader.h ├── mach-o_nlist.h ├── patchfinder64.c ├── patchfinder64.h └── test_versions.py /.gitignore: -------------------------------------------------------------------------------- 1 | kernel_caches/ 2 | kpps/ 3 | bin/ 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/patchfinder64/HEAD/.gitmodules -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/patchfinder64/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/patchfinder64/HEAD/README.md -------------------------------------------------------------------------------- /fetch_kerncaches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/patchfinder64/HEAD/fetch_kerncaches -------------------------------------------------------------------------------- /kerneldec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/patchfinder64/HEAD/kerneldec.cpp -------------------------------------------------------------------------------- /mac_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/patchfinder64/HEAD/mac_policy.h -------------------------------------------------------------------------------- /mach-o_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/patchfinder64/HEAD/mach-o_loader.h -------------------------------------------------------------------------------- /mach-o_nlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/patchfinder64/HEAD/mach-o_nlist.h -------------------------------------------------------------------------------- /patchfinder64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/patchfinder64/HEAD/patchfinder64.c -------------------------------------------------------------------------------- /patchfinder64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/patchfinder64/HEAD/patchfinder64.h -------------------------------------------------------------------------------- /test_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/patchfinder64/HEAD/test_versions.py --------------------------------------------------------------------------------