├── .gitignore ├── .idea ├── .gitignore ├── misc.xml ├── modules.xml ├── newosxbook-tools.iml └── vcs.xml ├── CMakeLists.txt ├── Makefile_sbtools ├── README.md ├── cmake-build-debug ├── .cmake │ └── api │ │ └── v1 │ │ ├── query │ │ ├── cache-v2 │ │ ├── cmakeFiles-v1 │ │ ├── codemodel-v2 │ │ └── toolchains-v1 │ │ └── reply │ │ └── directory-.-Debug-f5ebdc15457944623624.json ├── CMakeCache.txt ├── CMakeFiles │ ├── 3.21.1 │ │ ├── CMakeCCompiler.cmake │ │ ├── CMakeCXXCompiler.cmake │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ ├── CMakeSystem.cmake │ │ ├── CompilerIdC │ │ │ ├── CMakeCCompilerId.c │ │ │ └── CMakeCCompilerId.o │ │ └── CompilerIdCXX │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ └── CMakeCXXCompilerId.o │ ├── CMakeError.log │ ├── CMakeOutput.log │ ├── TargetDirectories.txt │ ├── clion-environment.txt │ ├── clion-log.txt │ ├── cmake.check_cache │ └── rules.ninja ├── build.ninja └── cmake_install.cmake ├── compileCTF.sh ├── dtrace ├── PE_state.d ├── d.d ├── fbt.d ├── kmem.d ├── pe.d ├── proctest.d └── zones.d ├── gcc-arm64.sh ├── include ├── SMBIOS.h ├── dt.h ├── lsock.h ├── lzss.h └── sandbox.h ├── src ├── 12-1-vmmap.c ├── 17-1-lsock.c ├── 17-25-bpf.c ├── 18-1-JKextstat.c ├── 19-3-iter.c ├── 19-4-iter.c ├── 4-5-interpose.c ├── 5-2-stack-snapshot.c ├── 6-bonus.c ├── amfidebilitate.c ├── bat.c ├── csops.c ├── dtize.c ├── dyld_example.c ├── filemon.c ├── gcd.c ├── inject.c ├── ioreg.c ├── joker.c ├── jurple_console.c ├── kmem.c ├── ktrace_example.c ├── lsdtrip.m ├── lsock.c ├── lstacks.c ├── lzss.c ├── mach_task_for_pid.c ├── mach_task_for_self.c ├── mistool.c ├── msg.c ├── mslist.c ├── netbottom.c ├── ojtool.c ├── ota.c ├── p.c ├── platformize.c ├── power.c ├── sandbox_exec.c ├── sbtool.c ├── seedutil.m ├── shaihulud.c ├── smut.c ├── stackshot.c └── utun.c └── tbdize.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/newosxbook-tools.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/.idea/newosxbook-tools.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Makefile_sbtools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/Makefile_sbtools -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/README.md -------------------------------------------------------------------------------- /cmake-build-debug/.cmake/api/v1/query/cache-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmake-build-debug/.cmake/api/v1/query/cmakeFiles-v1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmake-build-debug/.cmake/api/v1/query/codemodel-v2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmake-build-debug/.cmake/api/v1/query/toolchains-v1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmake-build-debug/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/cmake-build-debug/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json -------------------------------------------------------------------------------- /cmake-build-debug/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/cmake-build-debug/CMakeCache.txt -------------------------------------------------------------------------------- /cmake-build-debug/CMakeFiles/3.21.1/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/cmake-build-debug/CMakeFiles/3.21.1/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /cmake-build-debug/CMakeFiles/3.21.1/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/cmake-build-debug/CMakeFiles/3.21.1/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /cmake-build-debug/CMakeFiles/3.21.1/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/cmake-build-debug/CMakeFiles/3.21.1/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /cmake-build-debug/CMakeFiles/3.21.1/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/cmake-build-debug/CMakeFiles/3.21.1/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /cmake-build-debug/CMakeFiles/3.21.1/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/cmake-build-debug/CMakeFiles/3.21.1/CMakeSystem.cmake -------------------------------------------------------------------------------- /cmake-build-debug/CMakeFiles/3.21.1/CompilerIdC/CMakeCCompilerId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/cmake-build-debug/CMakeFiles/3.21.1/CompilerIdC/CMakeCCompilerId.c -------------------------------------------------------------------------------- /cmake-build-debug/CMakeFiles/3.21.1/CompilerIdC/CMakeCCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/cmake-build-debug/CMakeFiles/3.21.1/CompilerIdC/CMakeCCompilerId.o -------------------------------------------------------------------------------- /cmake-build-debug/CMakeFiles/3.21.1/CompilerIdCXX/CMakeCXXCompilerId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/cmake-build-debug/CMakeFiles/3.21.1/CompilerIdCXX/CMakeCXXCompilerId.cpp -------------------------------------------------------------------------------- /cmake-build-debug/CMakeFiles/3.21.1/CompilerIdCXX/CMakeCXXCompilerId.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/cmake-build-debug/CMakeFiles/3.21.1/CompilerIdCXX/CMakeCXXCompilerId.o -------------------------------------------------------------------------------- /cmake-build-debug/CMakeFiles/CMakeError.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/cmake-build-debug/CMakeFiles/CMakeError.log -------------------------------------------------------------------------------- /cmake-build-debug/CMakeFiles/CMakeOutput.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/cmake-build-debug/CMakeFiles/CMakeOutput.log -------------------------------------------------------------------------------- /cmake-build-debug/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/cmake-build-debug/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /cmake-build-debug/CMakeFiles/clion-environment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/cmake-build-debug/CMakeFiles/clion-environment.txt -------------------------------------------------------------------------------- /cmake-build-debug/CMakeFiles/clion-log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/cmake-build-debug/CMakeFiles/clion-log.txt -------------------------------------------------------------------------------- /cmake-build-debug/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/cmake-build-debug/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /cmake-build-debug/CMakeFiles/rules.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/cmake-build-debug/CMakeFiles/rules.ninja -------------------------------------------------------------------------------- /cmake-build-debug/build.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/cmake-build-debug/build.ninja -------------------------------------------------------------------------------- /cmake-build-debug/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/cmake-build-debug/cmake_install.cmake -------------------------------------------------------------------------------- /compileCTF.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/compileCTF.sh -------------------------------------------------------------------------------- /dtrace/PE_state.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/dtrace/PE_state.d -------------------------------------------------------------------------------- /dtrace/d.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/dtrace/d.d -------------------------------------------------------------------------------- /dtrace/fbt.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/dtrace/fbt.d -------------------------------------------------------------------------------- /dtrace/kmem.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/dtrace/kmem.d -------------------------------------------------------------------------------- /dtrace/pe.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/dtrace/pe.d -------------------------------------------------------------------------------- /dtrace/proctest.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/dtrace/proctest.d -------------------------------------------------------------------------------- /dtrace/zones.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/dtrace/zones.d -------------------------------------------------------------------------------- /gcc-arm64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/gcc-arm64.sh -------------------------------------------------------------------------------- /include/SMBIOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/include/SMBIOS.h -------------------------------------------------------------------------------- /include/dt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/include/dt.h -------------------------------------------------------------------------------- /include/lsock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/include/lsock.h -------------------------------------------------------------------------------- /include/lzss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/include/lzss.h -------------------------------------------------------------------------------- /include/sandbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/include/sandbox.h -------------------------------------------------------------------------------- /src/12-1-vmmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/12-1-vmmap.c -------------------------------------------------------------------------------- /src/17-1-lsock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/17-1-lsock.c -------------------------------------------------------------------------------- /src/17-25-bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/17-25-bpf.c -------------------------------------------------------------------------------- /src/18-1-JKextstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/18-1-JKextstat.c -------------------------------------------------------------------------------- /src/19-3-iter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/19-3-iter.c -------------------------------------------------------------------------------- /src/19-4-iter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/19-4-iter.c -------------------------------------------------------------------------------- /src/4-5-interpose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/4-5-interpose.c -------------------------------------------------------------------------------- /src/5-2-stack-snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/5-2-stack-snapshot.c -------------------------------------------------------------------------------- /src/6-bonus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/6-bonus.c -------------------------------------------------------------------------------- /src/amfidebilitate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/amfidebilitate.c -------------------------------------------------------------------------------- /src/bat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/bat.c -------------------------------------------------------------------------------- /src/csops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/csops.c -------------------------------------------------------------------------------- /src/dtize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/dtize.c -------------------------------------------------------------------------------- /src/dyld_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/dyld_example.c -------------------------------------------------------------------------------- /src/filemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/filemon.c -------------------------------------------------------------------------------- /src/gcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/gcd.c -------------------------------------------------------------------------------- /src/inject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/inject.c -------------------------------------------------------------------------------- /src/ioreg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/ioreg.c -------------------------------------------------------------------------------- /src/joker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/joker.c -------------------------------------------------------------------------------- /src/jurple_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/jurple_console.c -------------------------------------------------------------------------------- /src/kmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/kmem.c -------------------------------------------------------------------------------- /src/ktrace_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/ktrace_example.c -------------------------------------------------------------------------------- /src/lsdtrip.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/lsdtrip.m -------------------------------------------------------------------------------- /src/lsock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/lsock.c -------------------------------------------------------------------------------- /src/lstacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/lstacks.c -------------------------------------------------------------------------------- /src/lzss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/lzss.c -------------------------------------------------------------------------------- /src/mach_task_for_pid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/mach_task_for_pid.c -------------------------------------------------------------------------------- /src/mach_task_for_self.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/mach_task_for_self.c -------------------------------------------------------------------------------- /src/mistool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/mistool.c -------------------------------------------------------------------------------- /src/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/msg.c -------------------------------------------------------------------------------- /src/mslist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/mslist.c -------------------------------------------------------------------------------- /src/netbottom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/netbottom.c -------------------------------------------------------------------------------- /src/ojtool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/ojtool.c -------------------------------------------------------------------------------- /src/ota.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/ota.c -------------------------------------------------------------------------------- /src/p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/p.c -------------------------------------------------------------------------------- /src/platformize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/platformize.c -------------------------------------------------------------------------------- /src/power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/power.c -------------------------------------------------------------------------------- /src/sandbox_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/sandbox_exec.c -------------------------------------------------------------------------------- /src/sbtool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/sbtool.c -------------------------------------------------------------------------------- /src/seedutil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/seedutil.m -------------------------------------------------------------------------------- /src/shaihulud.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/shaihulud.c -------------------------------------------------------------------------------- /src/smut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/smut.c -------------------------------------------------------------------------------- /src/stackshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/stackshot.c -------------------------------------------------------------------------------- /src/utun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/src/utun.c -------------------------------------------------------------------------------- /tbdize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hack-different/newosxbook-tools/HEAD/tbdize.sh --------------------------------------------------------------------------------