├── OSXSlightlyBetterAuth.xcodeproj ├── TemplateIcon.icns └── project.pbxproj ├── OSXSlightlyBetterAuth_Prefix.pch ├── README.rst ├── OSXSlightlyBetterAuth.1 └── OSXSlightlyBetterAuth.m /OSXSlightlyBetterAuth.xcodeproj/TemplateIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelvobrien/OSXSlightlyBetterAuth/HEAD/OSXSlightlyBetterAuth.xcodeproj/TemplateIcon.icns -------------------------------------------------------------------------------- /OSXSlightlyBetterAuth_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'OSXSlightlyBetterAuth' target in the 'OSXSlightlyBetterAuth' project. 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- 1 | SYNOPSIS 2 | ========= 3 | 4 | This code was written to show how to use 5 | ``AuthorizationExecuteWithPrivileges`` in a simple and straightforward 6 | example. It is probably not secure, but it gets the job done for 7 | demonstration purposes. 8 | 9 | 10 | REQUIREMENTS 11 | ============= 12 | 13 | * Mac OS X Leopard (10.5) 14 | * Xcode 3.1 15 | 16 | 17 | COPYRIGHT 18 | ========== 19 | 20 | The MIT License 21 | 22 | Copyright (c) 2009 Michael V. O'Brien 23 | 24 | Permission is hereby granted, free of charge, to any person obtaining a copy 25 | of this software and associated documentation files (the "Software"), to deal 26 | in the Software without restriction, including without limitation the rights 27 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 28 | copies of the Software, and to permit persons to whom the Software is 29 | furnished to do so, subject to the following conditions: 30 | 31 | The above copyright notice and this permission notice shall be included in 32 | all copies or substantial portions of the Software. 33 | 34 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 35 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 36 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 37 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 38 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 39 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 40 | THE SOFTWARE. 41 | -------------------------------------------------------------------------------- /OSXSlightlyBetterAuth.1: -------------------------------------------------------------------------------- 1 | .\"Modified from man(1) of FreeBSD, the NetBSD mdoc.template, and mdoc.samples. 2 | .\"See Also: 3 | .\"man mdoc.samples for a complete listing of options 4 | .\"man mdoc for the short list of editing options 5 | .\"/usr/share/misc/mdoc.template 6 | .Dd 7/19/09 \" DATE 7 | .Dt OSXSlightlyBetterAuth 1 \" Program name and manual section number 8 | .Os Darwin 9 | .Sh NAME \" Section Header - required - don't modify 10 | .Nm OSXSlightlyBetterAuth, 11 | .\" The following lines are read in generating the apropos(man -k) database. Use only key 12 | .\" words here as the database is built based on the words here and in the .ND line. 13 | .Nm Other_name_for_same_program(), 14 | .Nm Yet another name for the same program. 15 | .\" Use .Nm macro to designate other names for the documented program. 16 | .Nd This line parsed for whatis database. 17 | .Sh SYNOPSIS \" Section Header - required - don't modify 18 | .Nm 19 | .Op Fl abcd \" [-abcd] 20 | .Op Fl a Ar path \" [-a path] 21 | .Op Ar file \" [file] 22 | .Op Ar \" [file ...] 23 | .Ar arg0 \" Underlined argument - use .Ar anywhere to underline 24 | arg2 ... \" Arguments 25 | .Sh DESCRIPTION \" Section Header - required - don't modify 26 | Use the .Nm macro to refer to your program throughout the man page like such: 27 | .Nm 28 | Underlining is accomplished with the .Ar macro like this: 29 | .Ar underlined text . 30 | .Pp \" Inserts a space 31 | A list of items with descriptions: 32 | .Bl -tag -width -indent \" Begins a tagged list 33 | .It item a \" Each item preceded by .It macro 34 | Description of item a 35 | .It item b 36 | Description of item b 37 | .El \" Ends the list 38 | .Pp 39 | A list of flags and their descriptions: 40 | .Bl -tag -width -indent \" Differs from above in tag removed 41 | .It Fl a \"-a flag as a list item 42 | Description of -a flag 43 | .It Fl b 44 | Description of -b flag 45 | .El \" Ends the list 46 | .Pp 47 | .\" .Sh ENVIRONMENT \" May not be needed 48 | .\" .Bl -tag -width "ENV_VAR_1" -indent \" ENV_VAR_1 is width of the string ENV_VAR_1 49 | .\" .It Ev ENV_VAR_1 50 | .\" Description of ENV_VAR_1 51 | .\" .It Ev ENV_VAR_2 52 | .\" Description of ENV_VAR_2 53 | .\" .El 54 | .Sh FILES \" File used or created by the topic of the man page 55 | .Bl -tag -width "/Users/joeuser/Library/really_long_file_name" -compact 56 | .It Pa /usr/share/file_name 57 | FILE_1 description 58 | .It Pa /Users/joeuser/Library/really_long_file_name 59 | FILE_2 description 60 | .El \" Ends the list 61 | .\" .Sh DIAGNOSTICS \" May not be needed 62 | .\" .Bl -diag 63 | .\" .It Diagnostic Tag 64 | .\" Diagnostic informtion here. 65 | .\" .It Diagnostic Tag 66 | .\" Diagnostic informtion here. 67 | .\" .El 68 | .Sh SEE ALSO 69 | .\" List links in ascending order by section, alphabetically within a section. 70 | .\" Please do not reference files that do not exist without filing a bug report 71 | .Xr a 1 , 72 | .Xr b 1 , 73 | .Xr c 1 , 74 | .Xr a 2 , 75 | .Xr b 2 , 76 | .Xr a 3 , 77 | .Xr b 3 78 | .\" .Sh BUGS \" Document known, unremedied bugs 79 | .\" .Sh HISTORY \" Document history if command behaves in a unique manner -------------------------------------------------------------------------------- /OSXSlightlyBetterAuth.m: -------------------------------------------------------------------------------- 1 | /* 2 | * OSXSlightlyBetterAuth.m 3 | * 4 | * Created by Michael V. O'Brien on 02/07/2009. 5 | * 6 | * This code was written to show how to use 7 | * AuthorizationExecuteWithPrivileges in a simple and straightforward 8 | * example. It is probably not secure, but it gets the job done for 9 | * demonstration purposes. 10 | */ 11 | 12 | 13 | #import 14 | // Add Security.framework to the Xcode project 15 | 16 | int main (int argc, const char * argv[]) { 17 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 18 | 19 | /* 20 | 21 | OSStatus AuthorizationCreate ( 22 | const AuthorizationRights *rights, 23 | const AuthorizationEnvironment *environment, 24 | AuthorizationFlags flags, 25 | AuthorizationRef *authorization 26 | ); 27 | 28 | 29 | OSStatus AuthorizationCopyRights ( 30 | AuthorizationRef authorization, 31 | const AuthorizationRights *rights, 32 | const AuthorizationEnvironment *environment, 33 | AuthorizationFlags flags, 34 | AuthorizationRights **authorizedRights 35 | ); 36 | 37 | 38 | OSStatus AuthorizationExecuteWithPrivileges ( 39 | AuthorizationRef authorization, 40 | const char *pathToTool, 41 | AuthorizationFlags options, 42 | char *const *arguments, 43 | FILE **communicationsPipe 44 | ); 45 | 46 | */ 47 | 48 | OSStatus status; // http://developer.apple.com/documentation/Security/Reference/authorization_ref/Reference/reference.html#//apple_ref/doc/uid/TP30000826-CH4g-CJBEABHG 49 | AuthorizationRef authorizationRef; 50 | 51 | // AuthorizationCreate and pass NULL as the initial AuthorizationRights set so that the AuthorizationRef 52 | // gets created successfully, and then later call AuthorizationCopyRights to determine or extend the allowable rights. 53 | // http://developer.apple.com/qa/qa2001/qa1172.html 54 | status = AuthorizationCreate(NULL, kAuthorizationEmptyEnvironment, kAuthorizationFlagDefaults, &authorizationRef); 55 | if (status != errAuthorizationSuccess) 56 | NSLog(@"Error Creating Initial Authorization: %d", status); 57 | 58 | // kAuthorizationRightExecute == "system.privilege.admin" 59 | AuthorizationItem right = {kAuthorizationRightExecute, 0, NULL, 0}; 60 | AuthorizationRights rights = {1, &right}; 61 | AuthorizationFlags flags = kAuthorizationFlagDefaults | 62 | kAuthorizationFlagInteractionAllowed | 63 | kAuthorizationFlagPreAuthorize | 64 | kAuthorizationFlagExtendRights; 65 | 66 | // Call AuthorizationCopyRights to determine or extend the allowable rights. 67 | status = AuthorizationCopyRights(authorizationRef, &rights, NULL, flags, NULL); 68 | if (status != errAuthorizationSuccess) 69 | NSLog(@"Copy Rights Unsuccessful: %d", status); 70 | 71 | // EXAMPLE 1: This system tool should work as intended. NOTE: The 72 | // do-while was used to create scope rather than a function to 73 | // make this demonstration code read more top-down. 74 | do { 75 | NSLog(@"\n\n** %@ **\n\n", @"This command should work."); 76 | char *tool = "/sbin/dmesg"; 77 | char *args[] = {NULL}; 78 | FILE *pipe = NULL; 79 | 80 | status = AuthorizationExecuteWithPrivileges(authorizationRef, tool, kAuthorizationFlagDefaults, args, &pipe); 81 | if (status != errAuthorizationSuccess) 82 | NSLog(@"Error: %d", status); 83 | 84 | char readBuffer[128]; 85 | if (status == errAuthorizationSuccess) { 86 | for (;;) { 87 | int bytesRead = read(fileno(pipe), readBuffer, sizeof(readBuffer)); 88 | if (bytesRead < 1) break; 89 | write(fileno(stdout), readBuffer, bytesRead); 90 | } 91 | } 92 | } while (0); 93 | 94 | // EXAMPLE 2: This system tool, ping, should not work as intended because of the 95 | // setuid bit. The ping command was set to "-r-sr-xr-x 1 root wheel" at the time of 96 | // writing this code. The ping command must be executed using root privileges to run 97 | // with an interval that is less than one second. 98 | do { 99 | NSLog(@"\n\n** %@ **\n\n", @"This `ping' command should not work."); 100 | char *tool = "/sbin/ping"; 101 | char *args[] = {"-i", "0.9", "google.com", NULL}; 102 | FILE *pipe = NULL; 103 | 104 | // Note that this function respects the setuid bit, if it is set. That is, if the 105 | // tool you are executing has its setuid bit set and its owner set to foo, the 106 | // tool will be executed with the user foo's privileges, not root privileges. To 107 | // ensure that your call to the AuthorizationExecuteWithPrivileges function works 108 | // as intended, make sure the setuid bit of the tool you wish to execute is 109 | // cleared before calling AuthorizationExecuteWithPrivileges to execute the tool. 110 | // http://developer.apple.com/DOCUMENTATION/Security/Reference/authorization_ref/Reference/reference.html#//apple_ref/c/func/AuthorizationExecuteWithPrivileges 111 | status = AuthorizationExecuteWithPrivileges(authorizationRef, tool, kAuthorizationFlagDefaults, args, &pipe); 112 | if (status != errAuthorizationSuccess) 113 | NSLog(@"Error: %d", status); 114 | 115 | } while (0); 116 | 117 | // The only way to guarantee that a credential acquired when you request a right 118 | // is not shared with other authorization instances is to destroy the credential. 119 | // To do so, call the AuthorizationFree function with the flag kAuthorizationFlagDestroyRights. 120 | // http://developer.apple.com/documentation/Security/Conceptual/authorization_concepts/02authconcepts/chapter_2_section_7.html 121 | status = AuthorizationFree(authorizationRef, kAuthorizationFlagDestroyRights); 122 | 123 | [pool drain]; 124 | return 0; 125 | } 126 | -------------------------------------------------------------------------------- /OSXSlightlyBetterAuth.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 45; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 4CC795501013E0C900F3D43A /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4CC7954F1013E0C900F3D43A /* Security.framework */; }; 11 | 8DD76F9A0486AA7600D96B5E /* OSXSlightlyBetterAuth.m in Sources */ = {isa = PBXBuildFile; fileRef = 08FB7796FE84155DC02AAC07 /* OSXSlightlyBetterAuth.m */; settings = {ATTRIBUTES = (); }; }; 12 | 8DD76F9C0486AA7600D96B5E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 08FB779EFE84155DC02AAC07 /* Foundation.framework */; }; 13 | 8DD76F9F0486AA7600D96B5E /* OSXSlightlyBetterAuth.1 in CopyFiles */ = {isa = PBXBuildFile; fileRef = C6859EA3029092ED04C91782 /* OSXSlightlyBetterAuth.1 */; }; 14 | /* End PBXBuildFile section */ 15 | 16 | /* Begin PBXCopyFilesBuildPhase section */ 17 | 8DD76F9E0486AA7600D96B5E /* CopyFiles */ = { 18 | isa = PBXCopyFilesBuildPhase; 19 | buildActionMask = 8; 20 | dstPath = /usr/share/man/man1/; 21 | dstSubfolderSpec = 0; 22 | files = ( 23 | 8DD76F9F0486AA7600D96B5E /* OSXSlightlyBetterAuth.1 in CopyFiles */, 24 | ); 25 | runOnlyForDeploymentPostprocessing = 1; 26 | }; 27 | /* End PBXCopyFilesBuildPhase section */ 28 | 29 | /* Begin PBXFileReference section */ 30 | 08FB7796FE84155DC02AAC07 /* OSXSlightlyBetterAuth.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OSXSlightlyBetterAuth.m; sourceTree = ""; }; 31 | 08FB779EFE84155DC02AAC07 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = ""; }; 32 | 32A70AAB03705E1F00C91783 /* OSXSlightlyBetterAuth_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OSXSlightlyBetterAuth_Prefix.pch; sourceTree = ""; }; 33 | 4CC7954F1013E0C900F3D43A /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = /System/Library/Frameworks/Security.framework; sourceTree = ""; }; 34 | 8DD76FA10486AA7600D96B5E /* OSXSlightlyBetterAuth */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = OSXSlightlyBetterAuth; sourceTree = BUILT_PRODUCTS_DIR; }; 35 | C6859EA3029092ED04C91782 /* OSXSlightlyBetterAuth.1 */ = {isa = PBXFileReference; lastKnownFileType = text.man; path = OSXSlightlyBetterAuth.1; sourceTree = ""; }; 36 | /* End PBXFileReference section */ 37 | 38 | /* Begin PBXFrameworksBuildPhase section */ 39 | 8DD76F9B0486AA7600D96B5E /* Frameworks */ = { 40 | isa = PBXFrameworksBuildPhase; 41 | buildActionMask = 2147483647; 42 | files = ( 43 | 8DD76F9C0486AA7600D96B5E /* Foundation.framework in Frameworks */, 44 | 4CC795501013E0C900F3D43A /* Security.framework in Frameworks */, 45 | ); 46 | runOnlyForDeploymentPostprocessing = 0; 47 | }; 48 | /* End PBXFrameworksBuildPhase section */ 49 | 50 | /* Begin PBXGroup section */ 51 | 08FB7794FE84155DC02AAC07 /* OSXSlightlyBetterAuth */ = { 52 | isa = PBXGroup; 53 | children = ( 54 | 4CC7954F1013E0C900F3D43A /* Security.framework */, 55 | 08FB7795FE84155DC02AAC07 /* Source */, 56 | C6859EA2029092E104C91782 /* Documentation */, 57 | 08FB779DFE84155DC02AAC07 /* External Frameworks and Libraries */, 58 | 1AB674ADFE9D54B511CA2CBB /* Products */, 59 | ); 60 | name = OSXSlightlyBetterAuth; 61 | sourceTree = ""; 62 | }; 63 | 08FB7795FE84155DC02AAC07 /* Source */ = { 64 | isa = PBXGroup; 65 | children = ( 66 | 32A70AAB03705E1F00C91783 /* OSXSlightlyBetterAuth_Prefix.pch */, 67 | 08FB7796FE84155DC02AAC07 /* OSXSlightlyBetterAuth.m */, 68 | ); 69 | name = Source; 70 | sourceTree = ""; 71 | }; 72 | 08FB779DFE84155DC02AAC07 /* External Frameworks and Libraries */ = { 73 | isa = PBXGroup; 74 | children = ( 75 | 08FB779EFE84155DC02AAC07 /* Foundation.framework */, 76 | ); 77 | name = "External Frameworks and Libraries"; 78 | sourceTree = ""; 79 | }; 80 | 1AB674ADFE9D54B511CA2CBB /* Products */ = { 81 | isa = PBXGroup; 82 | children = ( 83 | 8DD76FA10486AA7600D96B5E /* OSXSlightlyBetterAuth */, 84 | ); 85 | name = Products; 86 | sourceTree = ""; 87 | }; 88 | C6859EA2029092E104C91782 /* Documentation */ = { 89 | isa = PBXGroup; 90 | children = ( 91 | C6859EA3029092ED04C91782 /* OSXSlightlyBetterAuth.1 */, 92 | ); 93 | name = Documentation; 94 | sourceTree = ""; 95 | }; 96 | /* End PBXGroup section */ 97 | 98 | /* Begin PBXNativeTarget section */ 99 | 8DD76F960486AA7600D96B5E /* OSXSlightlyBetterAuth */ = { 100 | isa = PBXNativeTarget; 101 | buildConfigurationList = 1DEB927408733DD40010E9CD /* Build configuration list for PBXNativeTarget "OSXSlightlyBetterAuth" */; 102 | buildPhases = ( 103 | 8DD76F990486AA7600D96B5E /* Sources */, 104 | 8DD76F9B0486AA7600D96B5E /* Frameworks */, 105 | 8DD76F9E0486AA7600D96B5E /* CopyFiles */, 106 | ); 107 | buildRules = ( 108 | ); 109 | dependencies = ( 110 | ); 111 | name = OSXSlightlyBetterAuth; 112 | productInstallPath = "$(HOME)/bin"; 113 | productName = OSXSlightlyBetterAuth; 114 | productReference = 8DD76FA10486AA7600D96B5E /* OSXSlightlyBetterAuth */; 115 | productType = "com.apple.product-type.tool"; 116 | }; 117 | /* End PBXNativeTarget section */ 118 | 119 | /* Begin PBXProject section */ 120 | 08FB7793FE84155DC02AAC07 /* Project object */ = { 121 | isa = PBXProject; 122 | buildConfigurationList = 1DEB927808733DD40010E9CD /* Build configuration list for PBXProject "OSXSlightlyBetterAuth" */; 123 | compatibilityVersion = "Xcode 3.1"; 124 | hasScannedForEncodings = 1; 125 | mainGroup = 08FB7794FE84155DC02AAC07 /* OSXSlightlyBetterAuth */; 126 | projectDirPath = ""; 127 | projectRoot = ""; 128 | targets = ( 129 | 8DD76F960486AA7600D96B5E /* OSXSlightlyBetterAuth */, 130 | ); 131 | }; 132 | /* End PBXProject section */ 133 | 134 | /* Begin PBXSourcesBuildPhase section */ 135 | 8DD76F990486AA7600D96B5E /* Sources */ = { 136 | isa = PBXSourcesBuildPhase; 137 | buildActionMask = 2147483647; 138 | files = ( 139 | 8DD76F9A0486AA7600D96B5E /* OSXSlightlyBetterAuth.m in Sources */, 140 | ); 141 | runOnlyForDeploymentPostprocessing = 0; 142 | }; 143 | /* End PBXSourcesBuildPhase section */ 144 | 145 | /* Begin XCBuildConfiguration section */ 146 | 1DEB927508733DD40010E9CD /* Debug */ = { 147 | isa = XCBuildConfiguration; 148 | buildSettings = { 149 | ALWAYS_SEARCH_USER_PATHS = NO; 150 | COPY_PHASE_STRIP = NO; 151 | GCC_DYNAMIC_NO_PIC = NO; 152 | GCC_ENABLE_FIX_AND_CONTINUE = YES; 153 | GCC_MODEL_TUNING = G5; 154 | GCC_OPTIMIZATION_LEVEL = 0; 155 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 156 | GCC_PREFIX_HEADER = OSXSlightlyBetterAuth_Prefix.pch; 157 | INSTALL_PATH = /usr/local/bin; 158 | PRODUCT_NAME = OSXSlightlyBetterAuth; 159 | }; 160 | name = Debug; 161 | }; 162 | 1DEB927608733DD40010E9CD /* Release */ = { 163 | isa = XCBuildConfiguration; 164 | buildSettings = { 165 | ALWAYS_SEARCH_USER_PATHS = NO; 166 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 167 | GCC_MODEL_TUNING = G5; 168 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 169 | GCC_PREFIX_HEADER = OSXSlightlyBetterAuth_Prefix.pch; 170 | INSTALL_PATH = /usr/local/bin; 171 | PRODUCT_NAME = OSXSlightlyBetterAuth; 172 | }; 173 | name = Release; 174 | }; 175 | 1DEB927908733DD40010E9CD /* Debug */ = { 176 | isa = XCBuildConfiguration; 177 | buildSettings = { 178 | ARCHS = "$(ARCHS_STANDARD_32_BIT)"; 179 | GCC_C_LANGUAGE_STANDARD = c99; 180 | GCC_OPTIMIZATION_LEVEL = 0; 181 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 182 | GCC_WARN_UNUSED_VARIABLE = YES; 183 | ONLY_ACTIVE_ARCH = YES; 184 | PREBINDING = NO; 185 | SDKROOT = macosx10.5; 186 | }; 187 | name = Debug; 188 | }; 189 | 1DEB927A08733DD40010E9CD /* Release */ = { 190 | isa = XCBuildConfiguration; 191 | buildSettings = { 192 | ARCHS = "$(ARCHS_STANDARD_32_BIT)"; 193 | GCC_C_LANGUAGE_STANDARD = c99; 194 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 195 | GCC_WARN_UNUSED_VARIABLE = YES; 196 | PREBINDING = NO; 197 | SDKROOT = macosx10.5; 198 | }; 199 | name = Release; 200 | }; 201 | /* End XCBuildConfiguration section */ 202 | 203 | /* Begin XCConfigurationList section */ 204 | 1DEB927408733DD40010E9CD /* Build configuration list for PBXNativeTarget "OSXSlightlyBetterAuth" */ = { 205 | isa = XCConfigurationList; 206 | buildConfigurations = ( 207 | 1DEB927508733DD40010E9CD /* Debug */, 208 | 1DEB927608733DD40010E9CD /* Release */, 209 | ); 210 | defaultConfigurationIsVisible = 0; 211 | defaultConfigurationName = Release; 212 | }; 213 | 1DEB927808733DD40010E9CD /* Build configuration list for PBXProject "OSXSlightlyBetterAuth" */ = { 214 | isa = XCConfigurationList; 215 | buildConfigurations = ( 216 | 1DEB927908733DD40010E9CD /* Debug */, 217 | 1DEB927A08733DD40010E9CD /* Release */, 218 | ); 219 | defaultConfigurationIsVisible = 0; 220 | defaultConfigurationName = Release; 221 | }; 222 | /* End XCConfigurationList section */ 223 | }; 224 | rootObject = 08FB7793FE84155DC02AAC07 /* Project object */; 225 | } 226 | --------------------------------------------------------------------------------