├── .gitignore ├── .gitmodules ├── README.md ├── app ├── .gitignore ├── KFDAppDelegate.h ├── KFDAppDelegate.m ├── KFDRootViewController.h ├── KFDRootViewController.m ├── Makefile ├── Resources │ ├── AppIcon29x29.png │ ├── AppIcon29x29@2x.png │ ├── AppIcon29x29@3x.png │ ├── AppIcon40x40.png │ ├── AppIcon40x40@2x.png │ ├── AppIcon40x40@3x.png │ ├── AppIcon50x50.png │ ├── AppIcon50x50@2x.png │ ├── AppIcon57x57.png │ ├── AppIcon57x57@2x.png │ ├── AppIcon57x57@3x.png │ ├── AppIcon60x60.png │ ├── AppIcon60x60@2x.png │ ├── AppIcon60x60@3x.png │ ├── AppIcon72x72.png │ ├── AppIcon72x72@2x.png │ ├── AppIcon76x76.png │ ├── AppIcon76x76@2x.png │ ├── Info.plist │ ├── LaunchImage-700-568h@2x.png │ ├── LaunchImage-700-Landscape@2x~ipad.png │ ├── LaunchImage-700-Landscape~ipad.png │ ├── LaunchImage-700-Portrait@2x~ipad.png │ ├── LaunchImage-700-Portrait~ipad.png │ ├── LaunchImage-800-667h@2x.png │ ├── LaunchImage-800-Landscape-736h@3x.png │ ├── LaunchImage-800-Portrait-736h@3x.png │ ├── LaunchImage.png │ └── LaunchImage@2x.png ├── bins │ └── ct_bypass ├── build.sh ├── control ├── entitlements.plist ├── haxx.h ├── haxx.m ├── krw.h ├── krw.m ├── main.m ├── memoryControl.h ├── memoryControl.m ├── offsets.h ├── offsets.m ├── proc.h ├── proc.m ├── setup.m ├── userspace_reboot.h ├── userspace_reboot.m ├── vnode.h └── vnode.m ├── exploit ├── libkfd.h └── libkfd │ ├── common.h │ ├── info.h │ ├── info │ ├── dynamic_info.h │ ├── static_info.h │ └── supported.py │ ├── krkw.h │ ├── krkw │ ├── kread │ │ ├── kread_kqueue_workloop_ctl.h │ │ └── kread_sem_open.h │ └── kwrite │ │ ├── kwrite_dup.h │ │ └── kwrite_sem_open.h │ ├── perf.h │ ├── puaf.h │ └── puaf │ ├── landa.h │ ├── physpuppet.h │ └── smith.h ├── exploitold ├── libkfd.h └── libkfd │ ├── common.h │ ├── info.h │ ├── info │ ├── dynamic_info.h │ └── static_info.h │ ├── krkw.h │ ├── krkw │ ├── kread │ │ ├── kread_kqueue_workloop_ctl.h │ │ └── kread_sem_open.h │ └── kwrite │ │ ├── kwrite_dup.h │ │ └── kwrite_sem_open.h │ ├── perf.h │ ├── puaf.h │ └── puaf │ ├── landa.h │ ├── physpuppet.h │ └── smith.h ├── include ├── bootstrap.h └── xpc │ ├── activity.h │ ├── availability.h │ ├── base.h │ ├── debug.h │ ├── endpoint.h │ ├── launch.h │ ├── listener.h │ ├── rich_error.h │ ├── session.h │ ├── xpc.h │ └── xpc_connection.h ├── launchdhook ├── .gitignore ├── Frameworks │ └── IOMobileFramebuffer.framework │ │ └── IOMobileFramebuffer.tbd ├── Makefile ├── build.sh ├── control ├── entitlements.plist ├── fishhook.c ├── fishhook.h ├── launchdhook.dylib ├── main.m └── verbose │ ├── IOMobileFramebuffer.h │ ├── console │ ├── iso_font.c │ ├── msgbuf.h │ ├── serial_protos.h │ ├── video_console.c │ ├── video_console.h │ └── video_scroll.c │ └── verbose_boot.m ├── launchdpatch ├── .gitignore ├── entitlements.plist ├── patch-arm64.sh └── patch-arm64e.sh ├── mineekkfdhelper ├── .gitignore ├── Makefile ├── build.sh ├── control ├── entitlements.plist ├── insert_dylib.m ├── main.m ├── mineekkfdhelper ├── unarchive.h └── unarchive.m ├── shared ├── CoreServices.h ├── TSUtil.h └── TSUtil.m ├── springboardshim ├── .gitignore ├── Makefile ├── SpringBoardEnts.plist ├── SpringBoardMineek ├── build.sh ├── control ├── entitlements.plist └── main.c ├── supporttweak ├── .gitignore ├── Makefile ├── Tweak.x ├── build.sh ├── control ├── springboardhook.dylib └── supporttweak.plist └── tools ├── .gitignore ├── Makefile └── ldid /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | .theos/ 2 | packages/ 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /app/KFDAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/app/KFDAppDelegate.h -------------------------------------------------------------------------------- /app/KFDAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/app/KFDAppDelegate.m -------------------------------------------------------------------------------- /app/KFDRootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/app/KFDRootViewController.h -------------------------------------------------------------------------------- /app/KFDRootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/app/KFDRootViewController.m -------------------------------------------------------------------------------- /app/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/app/Makefile -------------------------------------------------------------------------------- /app/Resources/AppIcon29x29.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Resources/AppIcon29x29@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Resources/AppIcon29x29@3x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Resources/AppIcon40x40.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Resources/AppIcon40x40@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Resources/AppIcon40x40@3x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Resources/AppIcon50x50.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Resources/AppIcon50x50@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Resources/AppIcon57x57.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Resources/AppIcon57x57@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Resources/AppIcon57x57@3x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Resources/AppIcon60x60.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Resources/AppIcon60x60@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Resources/AppIcon60x60@3x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Resources/AppIcon72x72.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Resources/AppIcon72x72@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Resources/AppIcon76x76.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Resources/AppIcon76x76@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/app/Resources/Info.plist -------------------------------------------------------------------------------- /app/Resources/LaunchImage-700-568h@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Resources/LaunchImage-700-Landscape@2x~ipad.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Resources/LaunchImage-700-Landscape~ipad.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Resources/LaunchImage-700-Portrait@2x~ipad.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Resources/LaunchImage-700-Portrait~ipad.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Resources/LaunchImage-800-667h@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Resources/LaunchImage-800-Landscape-736h@3x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Resources/LaunchImage-800-Portrait-736h@3x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Resources/LaunchImage.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Resources/LaunchImage@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/bins/ct_bypass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/app/bins/ct_bypass -------------------------------------------------------------------------------- /app/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/app/build.sh -------------------------------------------------------------------------------- /app/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/app/control -------------------------------------------------------------------------------- /app/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/app/entitlements.plist -------------------------------------------------------------------------------- /app/haxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/app/haxx.h -------------------------------------------------------------------------------- /app/haxx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/app/haxx.m -------------------------------------------------------------------------------- /app/krw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/app/krw.h -------------------------------------------------------------------------------- /app/krw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/app/krw.m -------------------------------------------------------------------------------- /app/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/app/main.m -------------------------------------------------------------------------------- /app/memoryControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/app/memoryControl.h -------------------------------------------------------------------------------- /app/memoryControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/app/memoryControl.m -------------------------------------------------------------------------------- /app/offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/app/offsets.h -------------------------------------------------------------------------------- /app/offsets.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/app/offsets.m -------------------------------------------------------------------------------- /app/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/app/proc.h -------------------------------------------------------------------------------- /app/proc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/app/proc.m -------------------------------------------------------------------------------- /app/setup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/app/setup.m -------------------------------------------------------------------------------- /app/userspace_reboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/app/userspace_reboot.h -------------------------------------------------------------------------------- /app/userspace_reboot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/app/userspace_reboot.m -------------------------------------------------------------------------------- /app/vnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/app/vnode.h -------------------------------------------------------------------------------- /app/vnode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/app/vnode.m -------------------------------------------------------------------------------- /exploit/libkfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/exploit/libkfd.h -------------------------------------------------------------------------------- /exploit/libkfd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/exploit/libkfd/common.h -------------------------------------------------------------------------------- /exploit/libkfd/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/exploit/libkfd/info.h -------------------------------------------------------------------------------- /exploit/libkfd/info/dynamic_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/exploit/libkfd/info/dynamic_info.h -------------------------------------------------------------------------------- /exploit/libkfd/info/static_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/exploit/libkfd/info/static_info.h -------------------------------------------------------------------------------- /exploit/libkfd/info/supported.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/exploit/libkfd/info/supported.py -------------------------------------------------------------------------------- /exploit/libkfd/krkw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/exploit/libkfd/krkw.h -------------------------------------------------------------------------------- /exploit/libkfd/krkw/kread/kread_kqueue_workloop_ctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/exploit/libkfd/krkw/kread/kread_kqueue_workloop_ctl.h -------------------------------------------------------------------------------- /exploit/libkfd/krkw/kread/kread_sem_open.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/exploit/libkfd/krkw/kread/kread_sem_open.h -------------------------------------------------------------------------------- /exploit/libkfd/krkw/kwrite/kwrite_dup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/exploit/libkfd/krkw/kwrite/kwrite_dup.h -------------------------------------------------------------------------------- /exploit/libkfd/krkw/kwrite/kwrite_sem_open.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/exploit/libkfd/krkw/kwrite/kwrite_sem_open.h -------------------------------------------------------------------------------- /exploit/libkfd/perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/exploit/libkfd/perf.h -------------------------------------------------------------------------------- /exploit/libkfd/puaf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/exploit/libkfd/puaf.h -------------------------------------------------------------------------------- /exploit/libkfd/puaf/landa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/exploit/libkfd/puaf/landa.h -------------------------------------------------------------------------------- /exploit/libkfd/puaf/physpuppet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/exploit/libkfd/puaf/physpuppet.h -------------------------------------------------------------------------------- /exploit/libkfd/puaf/smith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/exploit/libkfd/puaf/smith.h -------------------------------------------------------------------------------- /exploitold/libkfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/exploitold/libkfd.h -------------------------------------------------------------------------------- /exploitold/libkfd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/exploitold/libkfd/common.h -------------------------------------------------------------------------------- /exploitold/libkfd/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/exploitold/libkfd/info.h -------------------------------------------------------------------------------- /exploitold/libkfd/info/dynamic_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/exploitold/libkfd/info/dynamic_info.h -------------------------------------------------------------------------------- /exploitold/libkfd/info/static_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/exploitold/libkfd/info/static_info.h -------------------------------------------------------------------------------- /exploitold/libkfd/krkw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/exploitold/libkfd/krkw.h -------------------------------------------------------------------------------- /exploitold/libkfd/krkw/kread/kread_kqueue_workloop_ctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/exploitold/libkfd/krkw/kread/kread_kqueue_workloop_ctl.h -------------------------------------------------------------------------------- /exploitold/libkfd/krkw/kread/kread_sem_open.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/exploitold/libkfd/krkw/kread/kread_sem_open.h -------------------------------------------------------------------------------- /exploitold/libkfd/krkw/kwrite/kwrite_dup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/exploitold/libkfd/krkw/kwrite/kwrite_dup.h -------------------------------------------------------------------------------- /exploitold/libkfd/krkw/kwrite/kwrite_sem_open.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/exploitold/libkfd/krkw/kwrite/kwrite_sem_open.h -------------------------------------------------------------------------------- /exploitold/libkfd/perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/exploitold/libkfd/perf.h -------------------------------------------------------------------------------- /exploitold/libkfd/puaf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/exploitold/libkfd/puaf.h -------------------------------------------------------------------------------- /exploitold/libkfd/puaf/landa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/exploitold/libkfd/puaf/landa.h -------------------------------------------------------------------------------- /exploitold/libkfd/puaf/physpuppet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/exploitold/libkfd/puaf/physpuppet.h -------------------------------------------------------------------------------- /exploitold/libkfd/puaf/smith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/exploitold/libkfd/puaf/smith.h -------------------------------------------------------------------------------- /include/bootstrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/include/bootstrap.h -------------------------------------------------------------------------------- /include/xpc/activity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/include/xpc/activity.h -------------------------------------------------------------------------------- /include/xpc/availability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/include/xpc/availability.h -------------------------------------------------------------------------------- /include/xpc/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/include/xpc/base.h -------------------------------------------------------------------------------- /include/xpc/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/include/xpc/debug.h -------------------------------------------------------------------------------- /include/xpc/endpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/include/xpc/endpoint.h -------------------------------------------------------------------------------- /include/xpc/launch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/include/xpc/launch.h -------------------------------------------------------------------------------- /include/xpc/listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/include/xpc/listener.h -------------------------------------------------------------------------------- /include/xpc/rich_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/include/xpc/rich_error.h -------------------------------------------------------------------------------- /include/xpc/session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/include/xpc/session.h -------------------------------------------------------------------------------- /include/xpc/xpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/include/xpc/xpc.h -------------------------------------------------------------------------------- /include/xpc/xpc_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/include/xpc/xpc_connection.h -------------------------------------------------------------------------------- /launchdhook/.gitignore: -------------------------------------------------------------------------------- 1 | .theos/ 2 | packages/ 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /launchdhook/Frameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/launchdhook/Frameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer.tbd -------------------------------------------------------------------------------- /launchdhook/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/launchdhook/Makefile -------------------------------------------------------------------------------- /launchdhook/build.sh: -------------------------------------------------------------------------------- 1 | make package -------------------------------------------------------------------------------- /launchdhook/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/launchdhook/control -------------------------------------------------------------------------------- /launchdhook/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/launchdhook/entitlements.plist -------------------------------------------------------------------------------- /launchdhook/fishhook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/launchdhook/fishhook.c -------------------------------------------------------------------------------- /launchdhook/fishhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/launchdhook/fishhook.h -------------------------------------------------------------------------------- /launchdhook/launchdhook.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/launchdhook/launchdhook.dylib -------------------------------------------------------------------------------- /launchdhook/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/launchdhook/main.m -------------------------------------------------------------------------------- /launchdhook/verbose/IOMobileFramebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/launchdhook/verbose/IOMobileFramebuffer.h -------------------------------------------------------------------------------- /launchdhook/verbose/console/iso_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/launchdhook/verbose/console/iso_font.c -------------------------------------------------------------------------------- /launchdhook/verbose/console/msgbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/launchdhook/verbose/console/msgbuf.h -------------------------------------------------------------------------------- /launchdhook/verbose/console/serial_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/launchdhook/verbose/console/serial_protos.h -------------------------------------------------------------------------------- /launchdhook/verbose/console/video_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/launchdhook/verbose/console/video_console.c -------------------------------------------------------------------------------- /launchdhook/verbose/console/video_console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/launchdhook/verbose/console/video_console.h -------------------------------------------------------------------------------- /launchdhook/verbose/console/video_scroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/launchdhook/verbose/console/video_scroll.c -------------------------------------------------------------------------------- /launchdhook/verbose/verbose_boot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/launchdhook/verbose/verbose_boot.m -------------------------------------------------------------------------------- /launchdpatch/.gitignore: -------------------------------------------------------------------------------- 1 | launchd* -------------------------------------------------------------------------------- /launchdpatch/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/launchdpatch/entitlements.plist -------------------------------------------------------------------------------- /launchdpatch/patch-arm64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/launchdpatch/patch-arm64.sh -------------------------------------------------------------------------------- /launchdpatch/patch-arm64e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/launchdpatch/patch-arm64e.sh -------------------------------------------------------------------------------- /mineekkfdhelper/.gitignore: -------------------------------------------------------------------------------- 1 | .theos/ 2 | packages/ 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /mineekkfdhelper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/mineekkfdhelper/Makefile -------------------------------------------------------------------------------- /mineekkfdhelper/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/mineekkfdhelper/build.sh -------------------------------------------------------------------------------- /mineekkfdhelper/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/mineekkfdhelper/control -------------------------------------------------------------------------------- /mineekkfdhelper/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/mineekkfdhelper/entitlements.plist -------------------------------------------------------------------------------- /mineekkfdhelper/insert_dylib.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/mineekkfdhelper/insert_dylib.m -------------------------------------------------------------------------------- /mineekkfdhelper/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/mineekkfdhelper/main.m -------------------------------------------------------------------------------- /mineekkfdhelper/mineekkfdhelper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/mineekkfdhelper/mineekkfdhelper -------------------------------------------------------------------------------- /mineekkfdhelper/unarchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/mineekkfdhelper/unarchive.h -------------------------------------------------------------------------------- /mineekkfdhelper/unarchive.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/mineekkfdhelper/unarchive.m -------------------------------------------------------------------------------- /shared/CoreServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/shared/CoreServices.h -------------------------------------------------------------------------------- /shared/TSUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/shared/TSUtil.h -------------------------------------------------------------------------------- /shared/TSUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/shared/TSUtil.m -------------------------------------------------------------------------------- /springboardshim/.gitignore: -------------------------------------------------------------------------------- 1 | .theos/ 2 | packages/ 3 | .DS_Store 4 | SpringBoardMineek.unsigned -------------------------------------------------------------------------------- /springboardshim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/springboardshim/Makefile -------------------------------------------------------------------------------- /springboardshim/SpringBoardEnts.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/springboardshim/SpringBoardEnts.plist -------------------------------------------------------------------------------- /springboardshim/SpringBoardMineek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/springboardshim/SpringBoardMineek -------------------------------------------------------------------------------- /springboardshim/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/springboardshim/build.sh -------------------------------------------------------------------------------- /springboardshim/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/springboardshim/control -------------------------------------------------------------------------------- /springboardshim/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/springboardshim/entitlements.plist -------------------------------------------------------------------------------- /springboardshim/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/springboardshim/main.c -------------------------------------------------------------------------------- /supporttweak/.gitignore: -------------------------------------------------------------------------------- 1 | .theos/ 2 | packages/ 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /supporttweak/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/supporttweak/Makefile -------------------------------------------------------------------------------- /supporttweak/Tweak.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/supporttweak/Tweak.x -------------------------------------------------------------------------------- /supporttweak/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/supporttweak/build.sh -------------------------------------------------------------------------------- /supporttweak/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/supporttweak/control -------------------------------------------------------------------------------- /supporttweak/springboardhook.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/supporttweak/springboardhook.dylib -------------------------------------------------------------------------------- /supporttweak/supporttweak.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/supporttweak/supporttweak.plist -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- 1 | insert_dylib -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/ldid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/kfdfunv4/HEAD/tools/ldid --------------------------------------------------------------------------------