Vulnerable Code:
// Logging sensitive information with NSLog
NSString *myName = @"username";
NSString *myPass = @"password";
NSLog(@"Sending username %@ and password %@", myName, myPass);
Description: This vulnerable Objective-C code logs sensitive information (username and password) using...