├── .clang-format ├── dyldloader ├── build.sh ├── dyldloader ├── dyldloader.c ├── format.sh └── real.entitlements ├── launch_windowserver ├── com.apple.WindowServer.plist └── wrap_windowserver ├── littlespawn ├── build.sh ├── format.sh ├── littlespawn.c └── littlespawn.entitlements ├── lldb_new_ld ├── go.sh └── runit.lldb ├── lldb_original_ld ├── go.sh └── runit.lldb ├── resign_any_executable ├── WindowServer_arm64.entitlement ├── build.sh └── set_to_arm64.py ├── resign_dyld ├── build.sh ├── patch_dyld.py ├── thepatch.c ├── thepatch.s ├── thepatch_full.o └── thepatch_full.s ├── resign_dyld_cache ├── fixup_signature_size.py ├── remove_signature.py └── resign.sh └── who_let_the_dogs_out ├── .gitignore ├── IOKitHeader.h ├── build.sh ├── format.sh ├── real.entitlements └── who_let_the_dogs_out.c /.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: Google 2 | -------------------------------------------------------------------------------- /dyldloader/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuowei/iOS-run-macOS-executables-tools/HEAD/dyldloader/build.sh -------------------------------------------------------------------------------- /dyldloader/dyldloader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuowei/iOS-run-macOS-executables-tools/HEAD/dyldloader/dyldloader -------------------------------------------------------------------------------- /dyldloader/dyldloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuowei/iOS-run-macOS-executables-tools/HEAD/dyldloader/dyldloader.c -------------------------------------------------------------------------------- /dyldloader/format.sh: -------------------------------------------------------------------------------- 1 | exec clang-format -i *.c 2 | -------------------------------------------------------------------------------- /dyldloader/real.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuowei/iOS-run-macOS-executables-tools/HEAD/dyldloader/real.entitlements -------------------------------------------------------------------------------- /launch_windowserver/com.apple.WindowServer.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuowei/iOS-run-macOS-executables-tools/HEAD/launch_windowserver/com.apple.WindowServer.plist -------------------------------------------------------------------------------- /launch_windowserver/wrap_windowserver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuowei/iOS-run-macOS-executables-tools/HEAD/launch_windowserver/wrap_windowserver -------------------------------------------------------------------------------- /littlespawn/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuowei/iOS-run-macOS-executables-tools/HEAD/littlespawn/build.sh -------------------------------------------------------------------------------- /littlespawn/format.sh: -------------------------------------------------------------------------------- 1 | exec clang-format -i *.c 2 | -------------------------------------------------------------------------------- /littlespawn/littlespawn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuowei/iOS-run-macOS-executables-tools/HEAD/littlespawn/littlespawn.c -------------------------------------------------------------------------------- /littlespawn/littlespawn.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuowei/iOS-run-macOS-executables-tools/HEAD/littlespawn/littlespawn.entitlements -------------------------------------------------------------------------------- /lldb_new_ld/go.sh: -------------------------------------------------------------------------------- 1 | lldb /bin/bash -s runit.lldb 2 | -------------------------------------------------------------------------------- /lldb_new_ld/runit.lldb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuowei/iOS-run-macOS-executables-tools/HEAD/lldb_new_ld/runit.lldb -------------------------------------------------------------------------------- /lldb_original_ld/go.sh: -------------------------------------------------------------------------------- 1 | lldb /bin/bash -s runit.lldb 2 | -------------------------------------------------------------------------------- /lldb_original_ld/runit.lldb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuowei/iOS-run-macOS-executables-tools/HEAD/lldb_original_ld/runit.lldb -------------------------------------------------------------------------------- /resign_any_executable/WindowServer_arm64.entitlement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuowei/iOS-run-macOS-executables-tools/HEAD/resign_any_executable/WindowServer_arm64.entitlement -------------------------------------------------------------------------------- /resign_any_executable/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuowei/iOS-run-macOS-executables-tools/HEAD/resign_any_executable/build.sh -------------------------------------------------------------------------------- /resign_any_executable/set_to_arm64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuowei/iOS-run-macOS-executables-tools/HEAD/resign_any_executable/set_to_arm64.py -------------------------------------------------------------------------------- /resign_dyld/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuowei/iOS-run-macOS-executables-tools/HEAD/resign_dyld/build.sh -------------------------------------------------------------------------------- /resign_dyld/patch_dyld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuowei/iOS-run-macOS-executables-tools/HEAD/resign_dyld/patch_dyld.py -------------------------------------------------------------------------------- /resign_dyld/thepatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuowei/iOS-run-macOS-executables-tools/HEAD/resign_dyld/thepatch.c -------------------------------------------------------------------------------- /resign_dyld/thepatch.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuowei/iOS-run-macOS-executables-tools/HEAD/resign_dyld/thepatch.s -------------------------------------------------------------------------------- /resign_dyld/thepatch_full.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuowei/iOS-run-macOS-executables-tools/HEAD/resign_dyld/thepatch_full.o -------------------------------------------------------------------------------- /resign_dyld/thepatch_full.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuowei/iOS-run-macOS-executables-tools/HEAD/resign_dyld/thepatch_full.s -------------------------------------------------------------------------------- /resign_dyld_cache/fixup_signature_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuowei/iOS-run-macOS-executables-tools/HEAD/resign_dyld_cache/fixup_signature_size.py -------------------------------------------------------------------------------- /resign_dyld_cache/remove_signature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuowei/iOS-run-macOS-executables-tools/HEAD/resign_dyld_cache/remove_signature.py -------------------------------------------------------------------------------- /resign_dyld_cache/resign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuowei/iOS-run-macOS-executables-tools/HEAD/resign_dyld_cache/resign.sh -------------------------------------------------------------------------------- /who_let_the_dogs_out/.gitignore: -------------------------------------------------------------------------------- 1 | who_let_the_dogs_out 2 | -------------------------------------------------------------------------------- /who_let_the_dogs_out/IOKitHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuowei/iOS-run-macOS-executables-tools/HEAD/who_let_the_dogs_out/IOKitHeader.h -------------------------------------------------------------------------------- /who_let_the_dogs_out/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuowei/iOS-run-macOS-executables-tools/HEAD/who_let_the_dogs_out/build.sh -------------------------------------------------------------------------------- /who_let_the_dogs_out/format.sh: -------------------------------------------------------------------------------- 1 | exec clang-format -i *.c 2 | -------------------------------------------------------------------------------- /who_let_the_dogs_out/real.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuowei/iOS-run-macOS-executables-tools/HEAD/who_let_the_dogs_out/real.entitlements -------------------------------------------------------------------------------- /who_let_the_dogs_out/who_let_the_dogs_out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuowei/iOS-run-macOS-executables-tools/HEAD/who_let_the_dogs_out/who_let_the_dogs_out.c --------------------------------------------------------------------------------