├── screenshot.png ├── displayiOSSandboxDetails.xcodeproj ├── xcuserdata │ └── dns.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ ├── xcschememanagement.plist │ │ └── displayiOSSandboxDetails.xcscheme ├── project.xcworkspace │ └── contents.xcworkspacedata └── project.pbxproj ├── displayiOSSandboxDetails ├── AppDelegate.h ├── main.m ├── FBBundleInfo.h ├── ViewController.h ├── Info.plist ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── AppDelegate.m ├── FBApplicationInfo.h ├── ViewController.m └── LSApplicationProxy.h ├── README.md └── LICENSE /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dineshshetty/iOS-SandBox-Dumper/HEAD/screenshot.png -------------------------------------------------------------------------------- /displayiOSSandboxDetails.xcodeproj/xcuserdata/dns.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /displayiOSSandboxDetails.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /displayiOSSandboxDetails/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // displayiOSSandboxDetails 4 | // 5 | // Created by dns on 10/20/17. 6 | // Copyright © 2017 dns. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /displayiOSSandboxDetails/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // displayiOSSandboxDetails 4 | // 5 | // Created by dns on 10/20/17. 6 | // Copyright © 2017 dns. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "AppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) { 13 | @autoreleasepool { 14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /displayiOSSandboxDetails.xcodeproj/xcuserdata/dns.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | displayiOSSandboxDetails.xcscheme 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | SuppressBuildableAutocreation 14 | 15 | EAEAE0F01F9A7BCC001C4DFB 16 | 17 | primary 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /displayiOSSandboxDetails/FBBundleInfo.h: -------------------------------------------------------------------------------- 1 | @class LSApplicationProxy, BSCFBundle; 2 | 3 | @interface FBBundleInfo : NSObject 4 | 5 | @property (getter=_bundle, nonatomic, readonly, retain) BSCFBundle *bundle; 6 | @property (nonatomic, retain) NSURL *bundleURL; 7 | @property (getter=_proxy, nonatomic, readonly, retain) LSApplicationProxy *proxy; 8 | 9 | @property (nonatomic, copy) NSString *bundleIdentifier; 10 | @property (nonatomic, copy) NSString *bundleType; 11 | @property (nonatomic, copy) NSString *bundleVersion; 12 | 13 | @property (nonatomic, retain) NSUUID *cacheGUID; 14 | 15 | @property (nonatomic, copy) NSString *displayName; 16 | @property (nonatomic, copy) NSDictionary *extendedInfo; 17 | @property (nonatomic) NSUInteger sequenceNumber; 18 | 19 | 20 | - (instancetype)_initWithApplicationProxy:(LSApplicationProxy *)proxy; 21 | - (instancetype)_initWithBundleURL:(NSURL *)url; 22 | 23 | - (void)_purgeBundle; 24 | 25 | - (id)extendedInfoValueForKey:(NSString *)key; 26 | 27 | @end 28 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | During an iOS pentesting gig you'll need to: 2 | - Take a look at the data that is being stored in the application sandbox 3 | - Analyze the application binary 4 | 5 | The location of the application binary is /private/var/mobile/containers/Bundle/Application/\/ 6 | 7 | The location of the application data directory is /private/var/containers/Data/Application/\/ 8 | 9 | These GUID values bear no indication of which application they belong to. You'll end up spending quite some time trying to figure out these GUID values every time you reinstall the application. 10 | 11 | SandBox-Dumper makes use of multiple private libraries to provide exact locations of the application sandbox, application bundle and some other interesting information. It should work on all the latest iOS versions. (Confirmed to be working on jailbroken iOS 14.2 device) 12 | 13 | 14 | 15 | ToDo: 16 | Option to switch between User and System applications 17 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Dinesh Shetty 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /displayiOSSandboxDetails/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // displayiOSSandboxDetails 4 | // 5 | // Created by dns on 10/20/17. 6 | // Copyright © 2017 dns. All rights reserved. 7 | // 8 | 9 | #import 10 | #import //added to provide declaration for objc_getClass 11 | #import "LSApplicationProxy.h" 12 | #import "FBApplicationInfo.h" 13 | 14 | 15 | @interface ViewController : UIViewController{ 16 | NSMutableArray *stringArrayAppName; 17 | NSMutableArray *stringArrayAppid; 18 | NSInteger selectedRow; 19 | // NSMutableDictionary *all_apps; 20 | // LSApplicationProxy *apps; 21 | 22 | 23 | 24 | 25 | } 26 | 27 | 28 | @property (weak, nonatomic) IBOutlet UIPickerView *app_picker; 29 | 30 | @property (strong, nonatomic)NSArray *dataSourceArray; 31 | @property (strong, nonatomic)NSArray *dataSourceAppIdArray; 32 | 33 | @property (strong, nonatomic)NSArray *completeAppList; 34 | 35 | - (IBAction)view_sandbox_button:(id)sender; 36 | @property (weak, nonatomic) IBOutlet UITextView *textview_sandbox_data_display; 37 | 38 | 39 | @end 40 | 41 | -------------------------------------------------------------------------------- /displayiOSSandboxDetails/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | LSRequiresIPhoneOS 22 | 23 | UILaunchStoryboardName 24 | LaunchScreen 25 | UIMainStoryboardFile 26 | Main 27 | UIRequiredDeviceCapabilities 28 | 29 | armv7 30 | 31 | UISupportedInterfaceOrientations 32 | 33 | UIInterfaceOrientationPortrait 34 | UIInterfaceOrientationLandscapeLeft 35 | UIInterfaceOrientationLandscapeRight 36 | 37 | UISupportedInterfaceOrientations~ipad 38 | 39 | UIInterfaceOrientationPortrait 40 | UIInterfaceOrientationPortraitUpsideDown 41 | UIInterfaceOrientationLandscapeLeft 42 | UIInterfaceOrientationLandscapeRight 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /displayiOSSandboxDetails/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /displayiOSSandboxDetails/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "20x20", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "20x20", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "29x29", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "29x29", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "40x40", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "40x40", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "idiom" : "iphone", 35 | "size" : "60x60", 36 | "scale" : "2x" 37 | }, 38 | { 39 | "idiom" : "iphone", 40 | "size" : "60x60", 41 | "scale" : "3x" 42 | }, 43 | { 44 | "idiom" : "ipad", 45 | "size" : "20x20", 46 | "scale" : "1x" 47 | }, 48 | { 49 | "idiom" : "ipad", 50 | "size" : "20x20", 51 | "scale" : "2x" 52 | }, 53 | { 54 | "idiom" : "ipad", 55 | "size" : "29x29", 56 | "scale" : "1x" 57 | }, 58 | { 59 | "idiom" : "ipad", 60 | "size" : "29x29", 61 | "scale" : "2x" 62 | }, 63 | { 64 | "idiom" : "ipad", 65 | "size" : "40x40", 66 | "scale" : "1x" 67 | }, 68 | { 69 | "idiom" : "ipad", 70 | "size" : "40x40", 71 | "scale" : "2x" 72 | }, 73 | { 74 | "idiom" : "ipad", 75 | "size" : "76x76", 76 | "scale" : "1x" 77 | }, 78 | { 79 | "idiom" : "ipad", 80 | "size" : "76x76", 81 | "scale" : "2x" 82 | }, 83 | { 84 | "idiom" : "ipad", 85 | "size" : "83.5x83.5", 86 | "scale" : "2x" 87 | } 88 | ], 89 | "info" : { 90 | "version" : 1, 91 | "author" : "xcode" 92 | } 93 | } -------------------------------------------------------------------------------- /displayiOSSandboxDetails/AppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.m 3 | // displayiOSSandboxDetails 4 | // 5 | // Created by dns on 10/20/17. 6 | // Copyright © 2017 dns. All rights reserved. 7 | // 8 | 9 | #import "AppDelegate.h" 10 | 11 | @interface AppDelegate () 12 | 13 | @end 14 | 15 | @implementation AppDelegate 16 | 17 | 18 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { 19 | // Override point for customization after application launch. 20 | return YES; 21 | } 22 | 23 | 24 | - (void)applicationWillResignActive:(UIApplication *)application { 25 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 26 | // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game. 27 | } 28 | 29 | 30 | - (void)applicationDidEnterBackground:(UIApplication *)application { 31 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 32 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 33 | } 34 | 35 | 36 | - (void)applicationWillEnterForeground:(UIApplication *)application { 37 | // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background. 38 | } 39 | 40 | 41 | - (void)applicationDidBecomeActive:(UIApplication *)application { 42 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 43 | } 44 | 45 | 46 | - (void)applicationWillTerminate:(UIApplication *)application { 47 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 48 | } 49 | 50 | 51 | @end 52 | -------------------------------------------------------------------------------- /displayiOSSandboxDetails/FBApplicationInfo.h: -------------------------------------------------------------------------------- 1 | #import "FBBundleInfo.h" 2 | 3 | @class FBApplicationDefaults; 4 | 5 | @interface FBApplicationInfo : FBBundleInfo 6 | 7 | @property (nonatomic, readonly, copy) NSString *applicationIdentifierEntitlement; 8 | @property (getter=isBeta, nonatomic, readonly) BOOL beta; 9 | @property (nonatomic, readonly, retain) NSURL *bundleContainerURL; 10 | @property (nonatomic, readonly, retain) NSArray *customMachServices; 11 | @property (nonatomic, readonly, retain) NSURL *dataContainerURL; 12 | @property (nonatomic, readonly, retain) FBApplicationDefaults *defaults; 13 | @property (nonatomic, readonly, retain) NSArray *deviceFamilies; 14 | @property (nonatomic, readonly, retain) NSNumber *downloaderDSID; 15 | @property (getter=isEnabled, nonatomic, readonly) BOOL enabled; 16 | @property (nonatomic, readonly, retain) NSDictionary *entitlements; 17 | @property (nonatomic, readonly, retain) NSDictionary *environmentVariables; 18 | @property (nonatomic, readonly, retain) NSURL *executableURL; 19 | @property (getter=isExitsOnSuspend, nonatomic, readonly) BOOL exitsOnSuspend; 20 | @property (nonatomic, readonly, retain) NSArray *externalAccessoryProtocols; 21 | @property (nonatomic, readonly, retain) NSString *fallbackFolderName; 22 | @property (nonatomic, readonly, retain) NSArray *folderNames; 23 | @property (getter=hasFreeDeveloperProvisioningProfile, nonatomic, readonly) BOOL freeDeveloperProvisioningProfile; 24 | @property (getter=_isInstalling, setter=_setInstalling:, nonatomic) BOOL installing; 25 | @property (nonatomic, readonly) double lastModifiedDate; 26 | @property (nonatomic, readonly) float minimumBrightnessLevel; 27 | @property (getter=isNewsstand, nonatomic, readonly) BOOL newsstand; 28 | @property (nonatomic, readonly, copy) NSString *preferenceDomain; 29 | @property (getter=isProvisioningProfileValidated, nonatomic, readonly) BOOL provisioningProfileValidated; 30 | @property (nonatomic, readonly, retain) NSNumber *purchaserDSID; 31 | @property (nonatomic, readonly) int ratingRank; 32 | @property (nonatomic, readonly, retain) NSArray *requiredCapabilities; 33 | @property (nonatomic, readonly) BOOL requiresPersistentWiFi; 34 | @property (getter=isRestricted, nonatomic, readonly) BOOL restricted; 35 | @property (nonatomic, readonly, retain) NSURL *sandboxURL; 36 | @property (nonatomic, readonly, copy) NSString *sdkVersion; 37 | @property (nonatomic, readonly) int signatureState; 38 | @property (nonatomic, readonly, copy) NSString *signerIdentity; 39 | @property (nonatomic, readonly) unsigned int supportedInterfaceOrientations; 40 | @property (nonatomic, readonly) unsigned int type; 41 | @property (getter=_isUninstalling, setter=_setUninstalling:, nonatomic) BOOL uninstalling; 42 | @property (getter=hasUniversalProvisioningProfile, nonatomic, readonly) BOOL universalProvisioningProfile; 43 | 44 | @end 45 | -------------------------------------------------------------------------------- /displayiOSSandboxDetails.xcodeproj/xcuserdata/dns.xcuserdatad/xcschemes/displayiOSSandboxDetails.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 39 | 40 | 41 | 42 | 43 | 44 | 54 | 56 | 62 | 63 | 64 | 65 | 66 | 67 | 73 | 75 | 81 | 82 | 83 | 84 | 86 | 87 | 90 | 91 | 92 | -------------------------------------------------------------------------------- /displayiOSSandboxDetails/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 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 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | -------------------------------------------------------------------------------- /displayiOSSandboxDetails/ViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.m 3 | // displayiOSSandboxDetails 4 | // 5 | // Created by dns on 10/20/17. 6 | // Copyright © 2017 dns. All rights reserved. 7 | // 8 | 9 | #import "ViewController.h" 10 | 11 | @interface ViewController () 12 | 13 | @end 14 | 15 | @implementation ViewController 16 | 17 | - (void)viewDidLoad { 18 | [super viewDidLoad]; 19 | [self showInstalledApplications]; 20 | 21 | } 22 | 23 | 24 | - (void)didReceiveMemoryWarning { 25 | [super didReceiveMemoryWarning]; 26 | // Dispose of any resources that can be recreated. 27 | } 28 | 29 | // Handles the number of component (columns) of data 30 | - (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView 31 | { 32 | return 1; 33 | } 34 | // Handles the number of rows of data 35 | - (NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)component 36 | { 37 | return _dataSourceArray.count; 38 | } 39 | // Function returns the data for the row and component (column) that's being passed in 40 | - (NSString*)pickerView:(UIPickerView *)pickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component 41 | { 42 | // NSLog(_dataSourceArray[row]); 43 | return _dataSourceArray[row]; 44 | } 45 | 46 | // Function handles the selection of component in the picker window 47 | - (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component { 48 | 49 | // NSLog(_dataSourceArray[row]); 50 | selectedRow = row; 51 | // selectedEntry = [allEntries objectAtIndex:row]; 52 | 53 | } 54 | 55 | - (void)showInstalledApplications { 56 | 57 | // This function updates the UI Picker with the list of all the applications installed on the device (System + User) 58 | // 59 | 60 | stringArrayAppName = [[NSMutableArray alloc] init]; 61 | stringArrayAppid = [[NSMutableArray alloc] init]; 62 | 63 | 64 | Class LSApplicationWorkspace_class = objc_getClass("LSApplicationWorkspace"); 65 | NSObject* workspace = [LSApplicationWorkspace_class performSelector:@selector(defaultWorkspace)]; 66 | for (LSApplicationProxy *apps in [workspace performSelector:@selector(allApplications)]) 67 | { 68 | NSString *localizedApplicationName = apps.localizedName; 69 | //Use NSString *localizedApplicationName = apps.applicationIdentifier to use application identifiers in Picker 70 | NSString *applicationIdentifier = apps.applicationIdentifier; 71 | if (localizedApplicationName && applicationIdentifier) 72 | { 73 | [stringArrayAppName addObject:localizedApplicationName]; 74 | [stringArrayAppid addObject:apps.applicationIdentifier]; 75 | } 76 | } 77 | // NSLog(@"%@",stringArray); 78 | 79 | NSMutableArray *appNamesData = [[NSMutableArray alloc] initWithArray:stringArrayAppName]; 80 | _dataSourceArray = appNamesData; 81 | 82 | NSMutableArray *appIdData = [[NSMutableArray alloc] initWithArray:stringArrayAppid]; 83 | _dataSourceAppIdArray = appIdData; 84 | 85 | self.app_picker.dataSource = self; 86 | self.app_picker.delegate = self; 87 | 88 | 89 | } 90 | 91 | - (NSMutableDictionary*)getApplicationSandboxDetails { 92 | NSDictionary *appBundleInformation = nil; 93 | NSMutableDictionary *all_apps = [NSMutableDictionary new]; 94 | 95 | 96 | Class LSApplicationWorkspace_class = objc_getClass("LSApplicationWorkspace"); 97 | NSObject* workspace = [LSApplicationWorkspace_class performSelector:@selector(defaultWorkspace)]; 98 | 99 | 100 | for (FBApplicationInfo *apps in [workspace performSelector:@selector(allApplications)]) 101 | { 102 | NSString *appName = ((LSApplicationProxy*)apps).itemName; 103 | if (!appName) 104 | { 105 | appName = ((LSApplicationProxy*)apps).localizedName; 106 | } 107 | 108 | 109 | NSString *minimumSupportedOS = ((LSApplicationProxy*)apps).minimumSystemVersion; 110 | if (!minimumSupportedOS) 111 | { 112 | minimumSupportedOS = @""; 113 | } 114 | 115 | NSString *appTeamID = ((LSApplicationProxy*)apps).teamID; 116 | if (!appTeamID) 117 | { 118 | appTeamID = @""; 119 | } 120 | 121 | //Using Absolute to fix Invalid type in JSON write (NSURL) error - http://www.itgo.me/a/x4350498357866144658/json-string-from-nsdictionary-having-file-path 122 | 123 | NSString *absoluteBundleIdentifier = @""; 124 | if (apps.bundleIdentifier) 125 | { 126 | absoluteBundleIdentifier = apps.bundleIdentifier ; 127 | 128 | } 129 | 130 | NSString *absoluteBundleURL = @""; 131 | if (apps.bundleURL) 132 | { 133 | absoluteBundleURL = [apps.bundleURL absoluteString]; 134 | 135 | } 136 | 137 | NSString *absoluteBundleContainerURL = @""; 138 | if (apps.bundleContainerURL) 139 | { 140 | absoluteBundleContainerURL = [apps.bundleContainerURL absoluteString]; 141 | } 142 | 143 | NSString *absoluteDataContainerURL = @""; 144 | if (apps.dataContainerURL) 145 | { 146 | absoluteDataContainerURL = [apps.dataContainerURL absoluteString]; 147 | } 148 | 149 | @try{ 150 | appBundleInformation = @{ 151 | @"DisplayName": appName, 152 | @"MinSdkVersion": minimumSupportedOS, 153 | @"TeamID" : appTeamID, 154 | @"BundleIdentifier": absoluteBundleIdentifier, 155 | @"BundleURL":absoluteBundleURL, 156 | @"BundleContainer":absoluteBundleContainerURL, 157 | @"DataContainer": absoluteDataContainerURL, 158 | }; 159 | }@catch (NSException* e){ 160 | NSLog(@"Exception = %@", e); 161 | }@finally { 162 | all_apps[apps.bundleIdentifier] = appBundleInformation; 163 | } 164 | 165 | } 166 | 167 | return all_apps; 168 | } 169 | 170 | - (void)sandBoxDataDisplay:(NSString *)text { 171 | // NSLog(@"In debugPrint = %@", text); 172 | 173 | [_textview_sandbox_data_display 174 | setText:text]; 175 | } 176 | 177 | 178 | 179 | - (IBAction)view_sandbox_button:(id)sender { 180 | 181 | NSLog(@" You Selected the application %@ with appId %@ ", _dataSourceArray[selectedRow], _dataSourceAppIdArray[selectedRow]); 182 | 183 | NSMutableDictionary *all_apps =[self getApplicationSandboxDetails]; 184 | NSDictionary* dictSelectedAppBundleInfo= all_apps[_dataSourceAppIdArray[selectedRow]]; 185 | NSLog(@"%@",dictSelectedAppBundleInfo); 186 | [self sandBoxDataDisplay:[NSString stringWithFormat:@"Details:%@",dictSelectedAppBundleInfo]]; 187 | 188 | } 189 | 190 | - (void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event 191 | { 192 | [[self view] endEditing:YES]; 193 | } 194 | @end 195 | -------------------------------------------------------------------------------- /displayiOSSandboxDetails/LSApplicationProxy.h: -------------------------------------------------------------------------------- 1 | /* Generated by RuntimeBrowser 2 | Image: /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices 3 | */ 4 | 5 | @interface LSApplicationProxy : NSObject { 6 | NSArray * _activityTypes; 7 | // _LSApplicationState * _appState; 8 | NSString * _applicationVariant; 9 | int _bundleModTime; 10 | NSString * _companionApplicationIdentifier; 11 | NSString * _complicationPrincipalClass; 12 | NSArray * _deviceFamily; 13 | NSString * _deviceIdentifierVendorName; 14 | // _LSDiskUsage * _diskUsage; 15 | NSNumber * _downloaderDSID; 16 | NSNumber * _familyID; 17 | unsigned long long _installType; 18 | NSNumber * _itemID; 19 | NSString * _itemName; 20 | NSString * _minimumSystemVersion; 21 | unsigned long long _originalInstallType; 22 | NSArray * _plugInKitPlugins; 23 | NSArray * _pluginUUIDs; 24 | NSString * _preferredArchitecture; 25 | NSArray * _privateDocumentIconNames; 26 | LSApplicationProxy * _privateDocumentTypeOwner; 27 | NSNumber * _purchaserDSID; 28 | NSString * _ratingLabel; 29 | NSNumber * _ratingRank; 30 | NSDate * _registeredDate; 31 | NSString * _sdkVersion; 32 | NSString * _shortVersionString; 33 | NSString * _sourceAppIdentifier; 34 | NSNumber * _storeFront; 35 | NSArray * _supportedComplicationFamilies; 36 | NSString * _teamID; 37 | bool _userInitiatedUninstall; 38 | NSString * _vendorName; 39 | NSNumber * _versionID; 40 | NSString * _watchKitVersion; 41 | } 42 | 43 | @property (nonatomic, readonly) NSNumber *ODRDiskUsage; 44 | @property (nonatomic, readonly) NSArray *UIBackgroundModes; 45 | @property (nonatomic, readonly) NSArray *VPNPlugins; 46 | @property (nonatomic, readonly) NSArray *activityTypes; 47 | //@property (nonatomic, readonly) _LSApplicationState *appState; 48 | @property (nonatomic, readonly) NSArray *appTags; 49 | @property (nonatomic, readonly) NSString *applicationDSID; 50 | @property (nonatomic, readonly) NSString *applicationIdentifier; 51 | @property (nonatomic, readonly) NSString *applicationType; 52 | @property (nonatomic, readonly) NSString *applicationVariant; 53 | @property (nonatomic, readonly) NSArray *audioComponents; 54 | @property (nonatomic, readonly) NSNumber *betaExternalVersionIdentifier; 55 | @property (nonatomic, readonly) int bundleModTime; 56 | @property (nonatomic, readonly) NSString *companionApplicationIdentifier; 57 | @property (readonly) NSString *complicationPrincipalClass; 58 | @property (nonatomic, readonly) NSArray *deviceFamily; 59 | @property (nonatomic, readonly) NSUUID *deviceIdentifierForAdvertising; 60 | @property (nonatomic, readonly) NSUUID *deviceIdentifierForVendor; 61 | @property (nonatomic, readonly) NSArray *directionsModes; 62 | //@property (nonatomic, readonly) _LSDiskUsage *diskUsage; 63 | @property (nonatomic, readonly) NSNumber *downloaderDSID; 64 | @property (nonatomic, readonly) NSNumber *dynamicDiskUsage; 65 | @property (nonatomic, readonly) NSArray *externalAccessoryProtocols; 66 | @property (nonatomic, readonly) NSNumber *externalVersionIdentifier; 67 | @property (nonatomic, readonly) NSNumber *familyID; 68 | @property (nonatomic, readonly) bool fileSharingEnabled; 69 | @property (readonly) bool hasComplication; 70 | @property (nonatomic, readonly) bool hasCustomNotification; 71 | @property (nonatomic, readonly) bool hasGlance; 72 | @property (nonatomic, readonly) bool hasMIDBasedSINF; 73 | @property (nonatomic, readonly) bool hasSettingsBundle; 74 | @property (nonatomic, readonly) bool iconIsPrerendered; 75 | @property (nonatomic, readonly) NSProgress *installProgress; 76 | @property (nonatomic, readonly) unsigned long long installType; 77 | @property (nonatomic, readonly) bool isAdHocCodeSigned; 78 | @property (nonatomic, readonly) bool isAppUpdate; 79 | @property (nonatomic, readonly) bool isBetaApp; 80 | @property (nonatomic, readonly) bool isInstalled; 81 | @property (nonatomic, readonly) bool isLaunchProhibited; 82 | @property (nonatomic, readonly) bool isNewsstandApp; 83 | @property (nonatomic, readonly) bool isPlaceholder; 84 | @property (nonatomic, readonly) bool isPurchasedReDownload; 85 | @property (nonatomic, readonly) bool isRestricted; 86 | @property (nonatomic, readonly) bool isStickerProvider; 87 | @property (nonatomic, readonly) bool isWatchKitApp; 88 | @property (nonatomic, readonly) NSNumber *itemID; 89 | @property (nonatomic, readonly) NSString *itemName; 90 | @property (nonatomic, readonly) NSString *minimumSystemVersion; 91 | @property (nonatomic, readonly) bool missingRequiredSINF; 92 | @property (nonatomic, readonly) unsigned long long originalInstallType; 93 | @property (nonatomic, readonly) NSArray *plugInKitPlugins; 94 | @property (nonatomic, readonly) NSString *preferredArchitecture; 95 | @property (nonatomic, copy) NSArray *privateDocumentIconNames; 96 | @property (nonatomic, retain) LSApplicationProxy *privateDocumentTypeOwner; 97 | @property (nonatomic, readonly) NSNumber *purchaserDSID; 98 | @property (nonatomic, readonly) NSString *ratingLabel; 99 | @property (nonatomic, readonly) NSNumber *ratingRank; 100 | @property (nonatomic, readonly) NSDate *registeredDate; 101 | @property (getter=isRemoveableSystemApp, nonatomic, readonly) bool removeableSystemApp; 102 | @property (getter=isRemovedSystemApp, nonatomic, readonly) bool removedSystemApp; 103 | @property (nonatomic, readonly) NSArray *requiredDeviceCapabilities; 104 | @property (nonatomic, readonly) NSString *sdkVersion; 105 | @property (nonatomic, readonly) NSString *shortVersionString; 106 | @property (nonatomic, readonly) bool shouldSkipWatchAppInstall; 107 | @property (nonatomic, readonly) NSString *sourceAppIdentifier; 108 | @property (nonatomic, readonly) NSNumber *staticDiskUsage; 109 | @property (nonatomic, readonly) NSString *storeCohortMetadata; 110 | @property (nonatomic, readonly) NSNumber *storeFront; 111 | @property (readonly) NSArray *supportedComplicationFamilies; 112 | @property (nonatomic, readonly) bool supportsAudiobooks; 113 | @property (nonatomic, readonly) bool supportsExternallyPlayableContent; 114 | @property (nonatomic, readonly) bool supportsODR; 115 | @property (nonatomic, readonly) bool supportsOpenInPlace; 116 | @property (nonatomic, readonly) bool supportsPurgeableLocalStorage; 117 | @property (nonatomic, readonly) NSString *teamID; 118 | @property (nonatomic) bool userInitiatedUninstall; 119 | @property (nonatomic, readonly) NSString *vendorName; 120 | @property (nonatomic, readonly) NSString *watchKitVersion; 121 | @property (getter=isWhitelisted, nonatomic, readonly) bool whitelisted; 122 | 123 | // Image: /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices 124 | 125 | + (id)applicationProxyForBundleURL:(id)arg1; 126 | + (id)applicationProxyForCompanionIdentifier:(id)arg1; 127 | + (id)applicationProxyForIdentifier:(id)arg1; 128 | + (id)applicationProxyForIdentifier:(id)arg1 placeholder:(bool)arg2; 129 | + (id)applicationProxyForItemID:(id)arg1; 130 | + (id)applicationProxyWithBundleUnitID:(unsigned int)arg1; 131 | + (bool)supportsSecureCoding; 132 | 133 | - (id)ODRDiskUsage; 134 | - (id)UIBackgroundModes; 135 | - (bool)UPPValidated; 136 | - (id)VPNPlugins; 137 | - (id)_initWithBundleUnit:(unsigned int)arg1 applicationIdentifier:(id)arg2; 138 | - (id)activityTypes; 139 | - (id)appState; 140 | - (id)appTags; 141 | - (id)applicationDSID; 142 | - (id)applicationIdentifier; 143 | - (id)applicationType; 144 | - (id)applicationVariant; 145 | - (id)audioComponents; 146 | - (id)betaExternalVersionIdentifier; 147 | - (int)bundleModTime; 148 | - (void)clearAdvertisingIdentifier; 149 | - (id)companionApplicationIdentifier; 150 | - (id)complicationPrincipalClass; 151 | - (void)dealloc; 152 | - (id)description; 153 | - (id)deviceFamily; 154 | - (id)deviceIdentifierForAdvertising; 155 | - (id)deviceIdentifierForVendor; 156 | - (id)directionsModes; 157 | - (id)diskUsage; 158 | - (id)downloaderDSID; 159 | - (id)dynamicDiskUsage; 160 | - (void)encodeWithCoder:(id)arg1; 161 | - (id)externalAccessoryProtocols; 162 | - (id)externalVersionIdentifier; 163 | - (id)familyID; 164 | - (bool)fileSharingEnabled; 165 | - (bool)hasComplication; 166 | - (bool)hasCustomNotification; 167 | - (bool)hasGlance; 168 | - (bool)hasMIDBasedSINF; 169 | - (bool)hasSettingsBundle; 170 | - (id)iconDataForVariant:(int)arg1; 171 | - (bool)iconIsPrerendered; 172 | - (id)iconStyleDomain; 173 | - (id)initWithCoder:(id)arg1; 174 | - (id)installProgress; 175 | - (id)installProgressSync; 176 | - (unsigned long long)installType; 177 | - (bool)isAdHocCodeSigned; 178 | - (bool)isAppUpdate; 179 | - (bool)isBetaApp; 180 | - (bool)isInstalled; 181 | - (bool)isLaunchProhibited; 182 | - (bool)isNewsstandApp; 183 | - (bool)isPlaceholder; 184 | - (bool)isPurchasedReDownload; 185 | - (bool)isRemoveableSystemApp; 186 | - (bool)isRemovedSystemApp; 187 | - (bool)isRestricted; 188 | - (bool)isStickerProvider; 189 | - (bool)isSystemOrInternalApp; 190 | - (bool)isWatchKitApp; 191 | - (bool)isWhitelisted; 192 | - (id)itemID; 193 | - (id)itemName; 194 | - (id)localizedName; 195 | - (id)localizedNameForContext:(id)arg1; 196 | - (id)localizedShortName; 197 | - (id)minimumSystemVersion; 198 | - (bool)missingRequiredSINF; 199 | - (unsigned long long)originalInstallType; 200 | - (id)plugInKitPlugins; 201 | - (id)preferredArchitecture; 202 | - (id)privateDocumentIconNames; 203 | - (id)privateDocumentTypeOwner; 204 | - (bool)profileValidated; 205 | - (id)purchaserDSID; 206 | - (id)ratingLabel; 207 | - (id)ratingRank; 208 | - (id)registeredDate; 209 | - (id)requiredDeviceCapabilities; 210 | - (id)resourcesDirectoryURL; 211 | - (id)sdkVersion; 212 | - (void)setPrivateDocumentIconNames:(id)arg1; 213 | - (void)setPrivateDocumentTypeOwner:(id)arg1; 214 | - (void)setUserInitiatedUninstall:(bool)arg1; 215 | - (id)shortVersionString; 216 | - (bool)shouldSkipWatchAppInstall; 217 | - (id)sourceAppIdentifier; 218 | - (id)staticDiskUsage; 219 | - (id)storeCohortMetadata; 220 | - (id)storeFront; 221 | - (id)supportedComplicationFamilies; 222 | - (bool)supportsAudiobooks; 223 | - (bool)supportsExternallyPlayableContent; 224 | - (bool)supportsODR; 225 | - (bool)supportsOpenInPlace; 226 | - (bool)supportsPurgeableLocalStorage; 227 | - (id)teamID; 228 | - (id)uniqueIdentifier; 229 | - (bool)userInitiatedUninstall; 230 | - (id)vendorName; 231 | - (id)watchKitVersion; 232 | 233 | // Image: /System/Library/Frameworks/Intents.framework/Intents 234 | 235 | - (bool)_inapptrust_isFirstParty; 236 | 237 | // Image: /System/Library/Frameworks/UIKit.framework/UIKit 238 | 239 | //- (struct CGSize { double x1; double x2; })_defaultStyleSize:(id)arg1; 240 | //- (struct { int x1; struct CGSize { double x_2_1_1; double x_2_1_2; } x2; }*)_iconVariantDefinitions:(id)arg1; 241 | 242 | // Image: /System/Library/PrivateFrameworks/ChatKit.framework/ChatKit 243 | 244 | - (id)__ck_messagesPluginKitProxy; 245 | 246 | // Image: /System/Library/PrivateFrameworks/UserNotificationsServer.framework/UserNotificationsServer 247 | 248 | + (id)uns_bundleForBundleIdentifier:(id)arg1; 249 | 250 | - (bool)_uns_isReallyInstalled; 251 | - (id)uns_bundle; 252 | - (id)uns_infoDictionary; 253 | - (bool)uns_isSystemApplication; 254 | - (id)uns_path; 255 | - (bool)uns_requiresLocalNotifications; 256 | - (bool)uns_sdkVersionOnOrLaterThan:(id)arg1; 257 | - (bool)uns_shouldUseDefaultDataProvider; 258 | - (bool)uns_usesCloudKit; 259 | - (bool)uns_usesLocalNotifications; 260 | 261 | @end 262 | -------------------------------------------------------------------------------- /displayiOSSandboxDetails.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | EA92FF0D1F9F3E37003CAF5F /* README.md in Resources */ = {isa = PBXBuildFile; fileRef = EA92FF0C1F9F3E37003CAF5F /* README.md */; }; 11 | EA92FF0F1F9F3E8B003CAF5F /* LICENSE in Resources */ = {isa = PBXBuildFile; fileRef = EA92FF0E1F9F3E8B003CAF5F /* LICENSE */; }; 12 | EAEAE0F61F9A7BCC001C4DFB /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = EAEAE0F51F9A7BCC001C4DFB /* main.m */; }; 13 | EAEAE0F91F9A7BCC001C4DFB /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = EAEAE0F81F9A7BCC001C4DFB /* AppDelegate.m */; }; 14 | EAEAE0FC1F9A7BCC001C4DFB /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = EAEAE0FB1F9A7BCC001C4DFB /* ViewController.m */; }; 15 | EAEAE0FF1F9A7BCC001C4DFB /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = EAEAE0FD1F9A7BCC001C4DFB /* Main.storyboard */; }; 16 | EAEAE1011F9A7BCC001C4DFB /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = EAEAE1001F9A7BCC001C4DFB /* Assets.xcassets */; }; 17 | EAEAE1041F9A7BCC001C4DFB /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = EAEAE1021F9A7BCC001C4DFB /* LaunchScreen.storyboard */; }; 18 | /* End PBXBuildFile section */ 19 | 20 | /* Begin PBXFileReference section */ 21 | EA92FF0C1F9F3E37003CAF5F /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; 22 | EA92FF0E1F9F3E8B003CAF5F /* LICENSE */ = {isa = PBXFileReference; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; 23 | EAEAE0F11F9A7BCC001C4DFB /* displayiOSSandboxDetails.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = displayiOSSandboxDetails.app; sourceTree = BUILT_PRODUCTS_DIR; }; 24 | EAEAE0F51F9A7BCC001C4DFB /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 25 | EAEAE0F71F9A7BCC001C4DFB /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; 26 | EAEAE0F81F9A7BCC001C4DFB /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; }; 27 | EAEAE0FA1F9A7BCC001C4DFB /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = ""; }; 28 | EAEAE0FB1F9A7BCC001C4DFB /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = ""; }; 29 | EAEAE0FE1F9A7BCC001C4DFB /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 30 | EAEAE1001F9A7BCC001C4DFB /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 31 | EAEAE1031F9A7BCC001C4DFB /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 32 | EAEAE1051F9A7BCC001C4DFB /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 33 | EAEAE10B1F9A827D001C4DFB /* LSApplicationProxy.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LSApplicationProxy.h; sourceTree = ""; }; 34 | EAEAE10D1F9A8C47001C4DFB /* FBApplicationInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FBApplicationInfo.h; sourceTree = ""; }; 35 | EAEAE10E1F9A8C6C001C4DFB /* FBBundleInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FBBundleInfo.h; sourceTree = ""; }; 36 | /* End PBXFileReference section */ 37 | 38 | /* Begin PBXFrameworksBuildPhase section */ 39 | EAEAE0EE1F9A7BCC001C4DFB /* Frameworks */ = { 40 | isa = PBXFrameworksBuildPhase; 41 | buildActionMask = 2147483647; 42 | files = ( 43 | ); 44 | runOnlyForDeploymentPostprocessing = 0; 45 | }; 46 | /* End PBXFrameworksBuildPhase section */ 47 | 48 | /* Begin PBXGroup section */ 49 | EAEAE0E81F9A7BCC001C4DFB = { 50 | isa = PBXGroup; 51 | children = ( 52 | EA92FF0E1F9F3E8B003CAF5F /* LICENSE */, 53 | EA92FF0C1F9F3E37003CAF5F /* README.md */, 54 | EAEAE0F31F9A7BCC001C4DFB /* displayiOSSandboxDetails */, 55 | EAEAE0F21F9A7BCC001C4DFB /* Products */, 56 | ); 57 | sourceTree = ""; 58 | }; 59 | EAEAE0F21F9A7BCC001C4DFB /* Products */ = { 60 | isa = PBXGroup; 61 | children = ( 62 | EAEAE0F11F9A7BCC001C4DFB /* displayiOSSandboxDetails.app */, 63 | ); 64 | name = Products; 65 | sourceTree = ""; 66 | }; 67 | EAEAE0F31F9A7BCC001C4DFB /* displayiOSSandboxDetails */ = { 68 | isa = PBXGroup; 69 | children = ( 70 | EAEAE0F71F9A7BCC001C4DFB /* AppDelegate.h */, 71 | EAEAE0F81F9A7BCC001C4DFB /* AppDelegate.m */, 72 | EAEAE0FA1F9A7BCC001C4DFB /* ViewController.h */, 73 | EAEAE0FB1F9A7BCC001C4DFB /* ViewController.m */, 74 | EAEAE0FD1F9A7BCC001C4DFB /* Main.storyboard */, 75 | EAEAE1001F9A7BCC001C4DFB /* Assets.xcassets */, 76 | EAEAE1021F9A7BCC001C4DFB /* LaunchScreen.storyboard */, 77 | EAEAE1051F9A7BCC001C4DFB /* Info.plist */, 78 | EAEAE0F41F9A7BCC001C4DFB /* Supporting Files */, 79 | EAEAE10C1F9A85A0001C4DFB /* PrivateHeaders */, 80 | ); 81 | path = displayiOSSandboxDetails; 82 | sourceTree = ""; 83 | }; 84 | EAEAE0F41F9A7BCC001C4DFB /* Supporting Files */ = { 85 | isa = PBXGroup; 86 | children = ( 87 | EAEAE0F51F9A7BCC001C4DFB /* main.m */, 88 | ); 89 | name = "Supporting Files"; 90 | sourceTree = ""; 91 | }; 92 | EAEAE10C1F9A85A0001C4DFB /* PrivateHeaders */ = { 93 | isa = PBXGroup; 94 | children = ( 95 | EAEAE10D1F9A8C47001C4DFB /* FBApplicationInfo.h */, 96 | EAEAE10B1F9A827D001C4DFB /* LSApplicationProxy.h */, 97 | EAEAE10E1F9A8C6C001C4DFB /* FBBundleInfo.h */, 98 | ); 99 | name = PrivateHeaders; 100 | sourceTree = ""; 101 | }; 102 | /* End PBXGroup section */ 103 | 104 | /* Begin PBXNativeTarget section */ 105 | EAEAE0F01F9A7BCC001C4DFB /* displayiOSSandboxDetails */ = { 106 | isa = PBXNativeTarget; 107 | buildConfigurationList = EAEAE1081F9A7BCC001C4DFB /* Build configuration list for PBXNativeTarget "displayiOSSandboxDetails" */; 108 | buildPhases = ( 109 | EAEAE0ED1F9A7BCC001C4DFB /* Sources */, 110 | EAEAE0EE1F9A7BCC001C4DFB /* Frameworks */, 111 | EAEAE0EF1F9A7BCC001C4DFB /* Resources */, 112 | ); 113 | buildRules = ( 114 | ); 115 | dependencies = ( 116 | ); 117 | name = displayiOSSandboxDetails; 118 | productName = displayiOSSandboxDetails; 119 | productReference = EAEAE0F11F9A7BCC001C4DFB /* displayiOSSandboxDetails.app */; 120 | productType = "com.apple.product-type.application"; 121 | }; 122 | /* End PBXNativeTarget section */ 123 | 124 | /* Begin PBXProject section */ 125 | EAEAE0E91F9A7BCC001C4DFB /* Project object */ = { 126 | isa = PBXProject; 127 | attributes = { 128 | LastUpgradeCheck = 0830; 129 | ORGANIZATIONNAME = dns; 130 | TargetAttributes = { 131 | EAEAE0F01F9A7BCC001C4DFB = { 132 | CreatedOnToolsVersion = 8.3.3; 133 | DevelopmentTeam = T2NR4WA7GR; 134 | ProvisioningStyle = Automatic; 135 | }; 136 | }; 137 | }; 138 | buildConfigurationList = EAEAE0EC1F9A7BCC001C4DFB /* Build configuration list for PBXProject "displayiOSSandboxDetails" */; 139 | compatibilityVersion = "Xcode 3.2"; 140 | developmentRegion = English; 141 | hasScannedForEncodings = 0; 142 | knownRegions = ( 143 | en, 144 | Base, 145 | ); 146 | mainGroup = EAEAE0E81F9A7BCC001C4DFB; 147 | productRefGroup = EAEAE0F21F9A7BCC001C4DFB /* Products */; 148 | projectDirPath = ""; 149 | projectRoot = ""; 150 | targets = ( 151 | EAEAE0F01F9A7BCC001C4DFB /* displayiOSSandboxDetails */, 152 | ); 153 | }; 154 | /* End PBXProject section */ 155 | 156 | /* Begin PBXResourcesBuildPhase section */ 157 | EAEAE0EF1F9A7BCC001C4DFB /* Resources */ = { 158 | isa = PBXResourcesBuildPhase; 159 | buildActionMask = 2147483647; 160 | files = ( 161 | EAEAE1041F9A7BCC001C4DFB /* LaunchScreen.storyboard in Resources */, 162 | EAEAE1011F9A7BCC001C4DFB /* Assets.xcassets in Resources */, 163 | EA92FF0D1F9F3E37003CAF5F /* README.md in Resources */, 164 | EAEAE0FF1F9A7BCC001C4DFB /* Main.storyboard in Resources */, 165 | EA92FF0F1F9F3E8B003CAF5F /* LICENSE in Resources */, 166 | ); 167 | runOnlyForDeploymentPostprocessing = 0; 168 | }; 169 | /* End PBXResourcesBuildPhase section */ 170 | 171 | /* Begin PBXSourcesBuildPhase section */ 172 | EAEAE0ED1F9A7BCC001C4DFB /* Sources */ = { 173 | isa = PBXSourcesBuildPhase; 174 | buildActionMask = 2147483647; 175 | files = ( 176 | EAEAE0FC1F9A7BCC001C4DFB /* ViewController.m in Sources */, 177 | EAEAE0F91F9A7BCC001C4DFB /* AppDelegate.m in Sources */, 178 | EAEAE0F61F9A7BCC001C4DFB /* main.m in Sources */, 179 | ); 180 | runOnlyForDeploymentPostprocessing = 0; 181 | }; 182 | /* End PBXSourcesBuildPhase section */ 183 | 184 | /* Begin PBXVariantGroup section */ 185 | EAEAE0FD1F9A7BCC001C4DFB /* Main.storyboard */ = { 186 | isa = PBXVariantGroup; 187 | children = ( 188 | EAEAE0FE1F9A7BCC001C4DFB /* Base */, 189 | ); 190 | name = Main.storyboard; 191 | sourceTree = ""; 192 | }; 193 | EAEAE1021F9A7BCC001C4DFB /* LaunchScreen.storyboard */ = { 194 | isa = PBXVariantGroup; 195 | children = ( 196 | EAEAE1031F9A7BCC001C4DFB /* Base */, 197 | ); 198 | name = LaunchScreen.storyboard; 199 | sourceTree = ""; 200 | }; 201 | /* End PBXVariantGroup section */ 202 | 203 | /* Begin XCBuildConfiguration section */ 204 | EAEAE1061F9A7BCC001C4DFB /* Debug */ = { 205 | isa = XCBuildConfiguration; 206 | buildSettings = { 207 | ALWAYS_SEARCH_USER_PATHS = NO; 208 | CLANG_ANALYZER_NONNULL = YES; 209 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 210 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 211 | CLANG_CXX_LIBRARY = "libc++"; 212 | CLANG_ENABLE_MODULES = YES; 213 | CLANG_ENABLE_OBJC_ARC = YES; 214 | CLANG_WARN_BOOL_CONVERSION = YES; 215 | CLANG_WARN_CONSTANT_CONVERSION = YES; 216 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 217 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 218 | CLANG_WARN_EMPTY_BODY = YES; 219 | CLANG_WARN_ENUM_CONVERSION = YES; 220 | CLANG_WARN_INFINITE_RECURSION = YES; 221 | CLANG_WARN_INT_CONVERSION = YES; 222 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 223 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 224 | CLANG_WARN_UNREACHABLE_CODE = YES; 225 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 226 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 227 | COPY_PHASE_STRIP = NO; 228 | DEBUG_INFORMATION_FORMAT = dwarf; 229 | ENABLE_STRICT_OBJC_MSGSEND = YES; 230 | ENABLE_TESTABILITY = YES; 231 | GCC_C_LANGUAGE_STANDARD = gnu99; 232 | GCC_DYNAMIC_NO_PIC = NO; 233 | GCC_NO_COMMON_BLOCKS = YES; 234 | GCC_OPTIMIZATION_LEVEL = 0; 235 | GCC_PREPROCESSOR_DEFINITIONS = ( 236 | "DEBUG=1", 237 | "$(inherited)", 238 | ); 239 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 240 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 241 | GCC_WARN_UNDECLARED_SELECTOR = YES; 242 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 243 | GCC_WARN_UNUSED_FUNCTION = YES; 244 | GCC_WARN_UNUSED_VARIABLE = YES; 245 | IPHONEOS_DEPLOYMENT_TARGET = 10.3; 246 | MTL_ENABLE_DEBUG_INFO = YES; 247 | ONLY_ACTIVE_ARCH = YES; 248 | SDKROOT = iphoneos; 249 | TARGETED_DEVICE_FAMILY = "1,2"; 250 | }; 251 | name = Debug; 252 | }; 253 | EAEAE1071F9A7BCC001C4DFB /* Release */ = { 254 | isa = XCBuildConfiguration; 255 | buildSettings = { 256 | ALWAYS_SEARCH_USER_PATHS = NO; 257 | CLANG_ANALYZER_NONNULL = YES; 258 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 259 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 260 | CLANG_CXX_LIBRARY = "libc++"; 261 | CLANG_ENABLE_MODULES = YES; 262 | CLANG_ENABLE_OBJC_ARC = YES; 263 | CLANG_WARN_BOOL_CONVERSION = YES; 264 | CLANG_WARN_CONSTANT_CONVERSION = YES; 265 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 266 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 267 | CLANG_WARN_EMPTY_BODY = YES; 268 | CLANG_WARN_ENUM_CONVERSION = YES; 269 | CLANG_WARN_INFINITE_RECURSION = YES; 270 | CLANG_WARN_INT_CONVERSION = YES; 271 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 272 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 273 | CLANG_WARN_UNREACHABLE_CODE = YES; 274 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 275 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 276 | COPY_PHASE_STRIP = NO; 277 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 278 | ENABLE_NS_ASSERTIONS = NO; 279 | ENABLE_STRICT_OBJC_MSGSEND = YES; 280 | GCC_C_LANGUAGE_STANDARD = gnu99; 281 | GCC_NO_COMMON_BLOCKS = YES; 282 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 283 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 284 | GCC_WARN_UNDECLARED_SELECTOR = YES; 285 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 286 | GCC_WARN_UNUSED_FUNCTION = YES; 287 | GCC_WARN_UNUSED_VARIABLE = YES; 288 | IPHONEOS_DEPLOYMENT_TARGET = 10.3; 289 | MTL_ENABLE_DEBUG_INFO = NO; 290 | SDKROOT = iphoneos; 291 | TARGETED_DEVICE_FAMILY = "1,2"; 292 | VALIDATE_PRODUCT = YES; 293 | }; 294 | name = Release; 295 | }; 296 | EAEAE1091F9A7BCC001C4DFB /* Debug */ = { 297 | isa = XCBuildConfiguration; 298 | buildSettings = { 299 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 300 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 301 | CODE_SIGN_STYLE = Automatic; 302 | DEVELOPMENT_TEAM = T2NR4WA7GR; 303 | INFOPLIST_FILE = displayiOSSandboxDetails/Info.plist; 304 | IPHONEOS_DEPLOYMENT_TARGET = 8.1; 305 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 306 | PRODUCT_BUNDLE_IDENTIFIER = com.dns.displayiOSSandboxDetails; 307 | PRODUCT_NAME = "$(TARGET_NAME)"; 308 | PROVISIONING_PROFILE_SPECIFIER = ""; 309 | }; 310 | name = Debug; 311 | }; 312 | EAEAE10A1F9A7BCC001C4DFB /* Release */ = { 313 | isa = XCBuildConfiguration; 314 | buildSettings = { 315 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 316 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 317 | CODE_SIGN_STYLE = Automatic; 318 | DEVELOPMENT_TEAM = T2NR4WA7GR; 319 | INFOPLIST_FILE = displayiOSSandboxDetails/Info.plist; 320 | IPHONEOS_DEPLOYMENT_TARGET = 8.1; 321 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 322 | PRODUCT_BUNDLE_IDENTIFIER = com.dns.displayiOSSandboxDetails; 323 | PRODUCT_NAME = "$(TARGET_NAME)"; 324 | PROVISIONING_PROFILE_SPECIFIER = ""; 325 | }; 326 | name = Release; 327 | }; 328 | /* End XCBuildConfiguration section */ 329 | 330 | /* Begin XCConfigurationList section */ 331 | EAEAE0EC1F9A7BCC001C4DFB /* Build configuration list for PBXProject "displayiOSSandboxDetails" */ = { 332 | isa = XCConfigurationList; 333 | buildConfigurations = ( 334 | EAEAE1061F9A7BCC001C4DFB /* Debug */, 335 | EAEAE1071F9A7BCC001C4DFB /* Release */, 336 | ); 337 | defaultConfigurationIsVisible = 0; 338 | defaultConfigurationName = Release; 339 | }; 340 | EAEAE1081F9A7BCC001C4DFB /* Build configuration list for PBXNativeTarget "displayiOSSandboxDetails" */ = { 341 | isa = XCConfigurationList; 342 | buildConfigurations = ( 343 | EAEAE1091F9A7BCC001C4DFB /* Debug */, 344 | EAEAE10A1F9A7BCC001C4DFB /* Release */, 345 | ); 346 | defaultConfigurationIsVisible = 0; 347 | defaultConfigurationName = Release; 348 | }; 349 | /* End XCConfigurationList section */ 350 | }; 351 | rootObject = EAEAE0E91F9A7BCC001C4DFB /* Project object */; 352 | } 353 | --------------------------------------------------------------------------------