├── .gitignore ├── README.md ├── astrisprobed_patcher ├── astrisprobed_patcher.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── astrisprobed_patcher.xcscheme └── astrisprobed_patcher │ ├── main.m │ ├── patcher.h │ ├── patcher.m │ ├── procInfo.h │ └── procInfo │ ├── Binary.m │ ├── Consts.h │ ├── Process.m │ ├── ProcessMonitor.m │ ├── Signing.h │ ├── Signing.m │ ├── Utilities.h │ └── Utilities.m ├── kanzifraudctl ├── kanzifraudctl.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── kanzifraudctl.xcscheme └── kanzifraudctl │ ├── astris_api.h │ ├── fraudlib.c │ ├── fraudlib.h │ ├── main.c │ ├── utils.c │ └── utils.h ├── kblcrcfix ├── main.c └── make.sh ├── kblctl ├── kblctl.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── kblctl.xcscheme └── kblctl │ ├── KBLDeviceMenu.h │ ├── KBLDeviceMenu.m │ ├── kbl_device.c │ ├── kbl_device.h │ └── main.m ├── probeenterdfu ├── make.sh └── probeenterdfu.c └── snrspoofer └── SNRSpoofer.kext └── Contents └── Info.plist /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/kanzitools/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/kanzitools/HEAD/README.md -------------------------------------------------------------------------------- /astrisprobed_patcher/astrisprobed_patcher.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/kanzitools/HEAD/astrisprobed_patcher/astrisprobed_patcher.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /astrisprobed_patcher/astrisprobed_patcher.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/kanzitools/HEAD/astrisprobed_patcher/astrisprobed_patcher.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /astrisprobed_patcher/astrisprobed_patcher.xcodeproj/xcshareddata/xcschemes/astrisprobed_patcher.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/kanzitools/HEAD/astrisprobed_patcher/astrisprobed_patcher.xcodeproj/xcshareddata/xcschemes/astrisprobed_patcher.xcscheme -------------------------------------------------------------------------------- /astrisprobed_patcher/astrisprobed_patcher/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/kanzitools/HEAD/astrisprobed_patcher/astrisprobed_patcher/main.m -------------------------------------------------------------------------------- /astrisprobed_patcher/astrisprobed_patcher/patcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/kanzitools/HEAD/astrisprobed_patcher/astrisprobed_patcher/patcher.h -------------------------------------------------------------------------------- /astrisprobed_patcher/astrisprobed_patcher/patcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/kanzitools/HEAD/astrisprobed_patcher/astrisprobed_patcher/patcher.m -------------------------------------------------------------------------------- /astrisprobed_patcher/astrisprobed_patcher/procInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/kanzitools/HEAD/astrisprobed_patcher/astrisprobed_patcher/procInfo.h -------------------------------------------------------------------------------- /astrisprobed_patcher/astrisprobed_patcher/procInfo/Binary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/kanzitools/HEAD/astrisprobed_patcher/astrisprobed_patcher/procInfo/Binary.m -------------------------------------------------------------------------------- /astrisprobed_patcher/astrisprobed_patcher/procInfo/Consts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/kanzitools/HEAD/astrisprobed_patcher/astrisprobed_patcher/procInfo/Consts.h -------------------------------------------------------------------------------- /astrisprobed_patcher/astrisprobed_patcher/procInfo/Process.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/kanzitools/HEAD/astrisprobed_patcher/astrisprobed_patcher/procInfo/Process.m -------------------------------------------------------------------------------- /astrisprobed_patcher/astrisprobed_patcher/procInfo/ProcessMonitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/kanzitools/HEAD/astrisprobed_patcher/astrisprobed_patcher/procInfo/ProcessMonitor.m -------------------------------------------------------------------------------- /astrisprobed_patcher/astrisprobed_patcher/procInfo/Signing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/kanzitools/HEAD/astrisprobed_patcher/astrisprobed_patcher/procInfo/Signing.h -------------------------------------------------------------------------------- /astrisprobed_patcher/astrisprobed_patcher/procInfo/Signing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/kanzitools/HEAD/astrisprobed_patcher/astrisprobed_patcher/procInfo/Signing.m -------------------------------------------------------------------------------- /astrisprobed_patcher/astrisprobed_patcher/procInfo/Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/kanzitools/HEAD/astrisprobed_patcher/astrisprobed_patcher/procInfo/Utilities.h -------------------------------------------------------------------------------- /astrisprobed_patcher/astrisprobed_patcher/procInfo/Utilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/kanzitools/HEAD/astrisprobed_patcher/astrisprobed_patcher/procInfo/Utilities.m -------------------------------------------------------------------------------- /kanzifraudctl/kanzifraudctl.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/kanzitools/HEAD/kanzifraudctl/kanzifraudctl.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /kanzifraudctl/kanzifraudctl.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/kanzitools/HEAD/kanzifraudctl/kanzifraudctl.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /kanzifraudctl/kanzifraudctl.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/kanzitools/HEAD/kanzifraudctl/kanzifraudctl.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /kanzifraudctl/kanzifraudctl.xcodeproj/xcshareddata/xcschemes/kanzifraudctl.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/kanzitools/HEAD/kanzifraudctl/kanzifraudctl.xcodeproj/xcshareddata/xcschemes/kanzifraudctl.xcscheme -------------------------------------------------------------------------------- /kanzifraudctl/kanzifraudctl/astris_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/kanzitools/HEAD/kanzifraudctl/kanzifraudctl/astris_api.h -------------------------------------------------------------------------------- /kanzifraudctl/kanzifraudctl/fraudlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/kanzitools/HEAD/kanzifraudctl/kanzifraudctl/fraudlib.c -------------------------------------------------------------------------------- /kanzifraudctl/kanzifraudctl/fraudlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/kanzitools/HEAD/kanzifraudctl/kanzifraudctl/fraudlib.h -------------------------------------------------------------------------------- /kanzifraudctl/kanzifraudctl/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/kanzitools/HEAD/kanzifraudctl/kanzifraudctl/main.c -------------------------------------------------------------------------------- /kanzifraudctl/kanzifraudctl/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/kanzitools/HEAD/kanzifraudctl/kanzifraudctl/utils.c -------------------------------------------------------------------------------- /kanzifraudctl/kanzifraudctl/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/kanzitools/HEAD/kanzifraudctl/kanzifraudctl/utils.h -------------------------------------------------------------------------------- /kblcrcfix/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/kanzitools/HEAD/kblcrcfix/main.c -------------------------------------------------------------------------------- /kblcrcfix/make.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | clang -O3 main.c -o kblcrcfix 4 | -------------------------------------------------------------------------------- /kblctl/kblctl.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/kanzitools/HEAD/kblctl/kblctl.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /kblctl/kblctl.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/kanzitools/HEAD/kblctl/kblctl.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /kblctl/kblctl.xcodeproj/xcshareddata/xcschemes/kblctl.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/kanzitools/HEAD/kblctl/kblctl.xcodeproj/xcshareddata/xcschemes/kblctl.xcscheme -------------------------------------------------------------------------------- /kblctl/kblctl/KBLDeviceMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/kanzitools/HEAD/kblctl/kblctl/KBLDeviceMenu.h -------------------------------------------------------------------------------- /kblctl/kblctl/KBLDeviceMenu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/kanzitools/HEAD/kblctl/kblctl/KBLDeviceMenu.m -------------------------------------------------------------------------------- /kblctl/kblctl/kbl_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/kanzitools/HEAD/kblctl/kblctl/kbl_device.c -------------------------------------------------------------------------------- /kblctl/kblctl/kbl_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/kanzitools/HEAD/kblctl/kblctl/kbl_device.h -------------------------------------------------------------------------------- /kblctl/kblctl/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/kanzitools/HEAD/kblctl/kblctl/main.m -------------------------------------------------------------------------------- /probeenterdfu/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/kanzitools/HEAD/probeenterdfu/make.sh -------------------------------------------------------------------------------- /probeenterdfu/probeenterdfu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/kanzitools/HEAD/probeenterdfu/probeenterdfu.c -------------------------------------------------------------------------------- /snrspoofer/SNRSpoofer.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/kanzitools/HEAD/snrspoofer/SNRSpoofer.kext/Contents/Info.plist --------------------------------------------------------------------------------