Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 | <?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>EnableBootArgs</key> <dict> <key>Enabled</key> <false/> </dict> <key>ProbGuard</key> <dict> <key>Enabled</key> <true/> </dict> <key>ProbGuardStrictAlignment</key> <dict> <key>Enabled</key> <false/> </dict> <key>ProbGuardAllProcesses</key> <dict> <key>Enabled</key> <false/> </dict> <key>ZeroOnFree</key> <dict> <key>Enabled</key> <true/> </dict> <key>SecureAllocator_SingleCluster</key> <dict> <key>DevelopmentPhase</key> <string>UnderDevelopment</string> </dict> <key>SecureAllocator_Nano</key> <dict> <key>DevelopmentPhase</key> <string>UnderDevelopment</string> </dict> #if TARGET_OS_IOS && !defined(MALLOC_IOS_FEATUREFLAG_OVERRIDE) #define HAS_SECURE_ALLOCATOR_PROCESS_FEATURES 1 #define SECURE_ALLOCATOR_SYSTEMWIDE_ENABLED 1 #else #define HAS_SECURE_ALLOCATOR_PROCESS_FEATURES 0 #define SECURE_ALLOCATOR_SYSTEMWIDE_ENABLED 0 #endif <key>SecureAllocator_SystemWide</key> <dict> <key>DevelopmentPhase</key> #if SECURE_ALLOCATOR_SYSTEMWIDE_ENABLED <string>FeatureComplete</string> #else <string>UnderDevelopment</string> #endif </dict> #if HAS_SECURE_ALLOCATOR_PROCESS_FEATURES <key>SecureAllocator_AllInitialProcesses</key> <dict> <key>DevelopmentPhase</key> <string>UnderDevelopment</string> </dict> #define SECURE_ALLOCATOR_PROCESS_FEATURE(name, state) \ <key>SecureAllocator_process_##name</key> \ <dict> \ <key>DevelopmentPhase</key> \ <string>state</string> \ </dict> SECURE_ALLOCATOR_PROCESS_FEATURE(logd, FeatureComplete) SECURE_ALLOCATOR_PROCESS_FEATURE(notifyd, FeatureComplete) SECURE_ALLOCATOR_PROCESS_FEATURE(mediaparserd, FeatureComplete) SECURE_ALLOCATOR_PROCESS_FEATURE(videocodecd, FeatureComplete) SECURE_ALLOCATOR_PROCESS_FEATURE(mediaplaybackd, FeatureComplete) SECURE_ALLOCATOR_PROCESS_FEATURE(avconferenced, FeatureComplete) SECURE_ALLOCATOR_PROCESS_FEATURE(mediaserverd, FeatureComplete) SECURE_ALLOCATOR_PROCESS_FEATURE(audiomxd, FeatureComplete) SECURE_ALLOCATOR_PROCESS_FEATURE(cameracaptured, FeatureComplete) SECURE_ALLOCATOR_PROCESS_FEATURE(blastdoor_messages, FeatureComplete) SECURE_ALLOCATOR_PROCESS_FEATURE(blastdoor_ids, FeatureComplete) SECURE_ALLOCATOR_PROCESS_FEATURE(IMDPersistenceAgent, FeatureComplete) SECURE_ALLOCATOR_PROCESS_FEATURE(imagent, FeatureComplete) SECURE_ALLOCATOR_PROCESS_FEATURE(ThumbnailExtensionSecure, FeatureComplete) SECURE_ALLOCATOR_PROCESS_FEATURE(quicklook_preview, FeatureComplete) SECURE_ALLOCATOR_PROCESS_FEATURE(ThumbnailExtension, FeatureComplete) SECURE_ALLOCATOR_PROCESS_FEATURE(MTLCompilerService, FeatureComplete) SECURE_ALLOCATOR_PROCESS_FEATURE(telnetd, UnderDevelopment) SECURE_ALLOCATOR_PROCESS_FEATURE(sshd, UnderDevelopment) SECURE_ALLOCATOR_PROCESS_FEATURE(sshd_keygen_wrapper, UnderDevelopment) SECURE_ALLOCATOR_PROCESS_FEATURE(bash, UnderDevelopment) SECURE_ALLOCATOR_PROCESS_FEATURE(dash, UnderDevelopment) SECURE_ALLOCATOR_PROCESS_FEATURE(sh, UnderDevelopment) SECURE_ALLOCATOR_PROCESS_FEATURE(zsh, UnderDevelopment) SECURE_ALLOCATOR_PROCESS_FEATURE(python3, UnderDevelopment) SECURE_ALLOCATOR_PROCESS_FEATURE(perl, UnderDevelopment) SECURE_ALLOCATOR_PROCESS_FEATURE(su, UnderDevelopment) SECURE_ALLOCATOR_PROCESS_FEATURE(time, UnderDevelopment) SECURE_ALLOCATOR_PROCESS_FEATURE(find, UnderDevelopment) SECURE_ALLOCATOR_PROCESS_FEATURE(xargs, UnderDevelopment) SECURE_ALLOCATOR_PROCESS_FEATURE(callservicesd, FeatureComplete) SECURE_ALLOCATOR_PROCESS_FEATURE(maild, FeatureComplete) SECURE_ALLOCATOR_PROCESS_FEATURE(mDNSResponder, FeatureComplete) SECURE_ALLOCATOR_PROCESS_FEATURE(ASVAssetViewer, FeatureComplete) SECURE_ALLOCATOR_PROCESS_FEATURE(identityservicesd, FeatureComplete) SECURE_ALLOCATOR_PROCESS_FEATURE(wifid, FeatureComplete) SECURE_ALLOCATOR_PROCESS_FEATURE(fmfd, FeatureComplete) SECURE_ALLOCATOR_PROCESS_FEATURE(searchpartyd, FeatureComplete) SECURE_ALLOCATOR_PROCESS_FEATURE(vmd, FeatureComplete) SECURE_ALLOCATOR_PROCESS_FEATURE(wifip2pd, FeatureComplete) SECURE_ALLOCATOR_PROCESS_FEATURE(wifianalyticsd, FeatureComplete) SECURE_ALLOCATOR_PROCESS_FEATURE(CommCenter, FeatureComplete) SECURE_ALLOCATOR_PROCESS_FEATURE(Browser, FeatureComplete) SECURE_ALLOCATOR_PROCESS_FEATURE(aegirposter, UnderDevelopment) SECURE_ALLOCATOR_PROCESS_FEATURE(CollectionsPoster, UnderDevelopment) #endif </dict> </plist> |