Skip the iPhone setup screen on checkra1n devices, make sure these files are written to /var/mobile/Library/Preferences
This no longer works as of iOS 15 (or it might, but I'm pretty sure it's gone)
<?xml version="1.0" encoding="UTF-8"?>| @interface MIGlobalConfiguration : NSObject {} | |
| @end | |
| @interface MIDaemonConfiguration : MIGlobalConfiguration {} | |
| @property (nonatomic,readonly) BOOL skipDeviceFamilyCheck; | |
| @property (nonatomic,readonly) BOOL skipThinningCheck; | |
| @property (nonatomic,readonly) BOOL allowPatchWithoutSinf; | |
| @property (nonatomic,readonly) BOOL codeSigningEnforcementIsDisabled; | |
| @property (nonatomic,readonly) BOOL isInternalImageType; | |
| -(BOOL)isInternalImageType; |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>com.apple.private.MobileGestalt.AllowedProtectedKeys</key> | |
| <array> | |
| <string>AWDID</string> | |
| <string>AmbientLightSensorSerialNumber</string> | |
| <string>ArcModuleSerialNumber</string> | |
| <string>ArrowChipID</string> |
| #!/bin/bash | |
| set -e | |
| NAME=sURL | |
| function build() { | |
| START=$(date +%s) | |
| swift build --product $NAME \ |
| #ifndef NETRB_h | |
| #define NETRB_h | |
| #include <xpc/xpc.h> | |
| #include <dispatch/dispatch.h> | |
| #ifdef __cplusplus | |
| extern "C" { | |
| #endif |
| com.apple.private.security.disk-device-access | |
| com.apple.private.security.no-container | |
| com.apple.private.security.storage.AppBundles | |
| com.apple.private.security.storage.AppDataContainers | |
| com.apple.private.security.storage.AppStoreCache | |
| com.apple.private.security.storage.BulletinDistributor | |
| com.apple.private.security.storage.CallHistory | |
| com.apple.private.security.storage.CloudKit | |
| com.apple.private.security.storage.CoreKnowledge | |
| com.apple.private.security.storage.DCIM |
| #include <stdio.h> | |
| #include <dlfcn.h> | |
| #include <CoreFoundation/CoreFoundation.h> | |
| // Barebones purple_console clone - constructed with some reverse and forward engineering. | |
| // | |
| // No copyright or license. Feel free to share. Comments/Feedback welcome @http://newosxbook.com/forum/ | |
| // | |
| // |
| #! /bin/bash | |
| log stream --style compact --color=auto --predicate 'process == "Apple Configurator 2"' --predicate 'process == "com.apple.configurator.xpc.DeviceService"' --predicate 'process == "com.apple.configurator.xpc.AirTrafficService"' --predicate 'process == "com.apple.configurator.xpc.InternetService"' | |
| # Launch Apple Configurator while holding down on the shift key to enable debug logging |
| #!/usr/bin/sandbox-exec -n no-network /usr/bin/ruby -E UTF-8 -v | |
| # -*- coding: utf-8; mode: ruby -*- | |
| # | |
| # A utility for performing various operations on IPA files. This script is | |
| # intended to be invoked by xcodebuild. It is not intended for direct use, | |
| # or for invocation in any manner other than through xcodebuild. Any other | |
| # use is unsupported. | |
| # | |
| # Copyright © 2015-2020 Apple Inc. All Rights Reserved. | |
| # |