On Sat, Sep 10, 2011 at 3:44 PM, Jay Soffian <jaysoffian@xxxxxxxxx> wrote: > A credential helper which uses /usr/bin/security to add, search, > and remove entries from the Mac OS X keychain. > > Tested with 10.6.8. > > Signed-off-by: Jay Soffian <jaysoffian@xxxxxxxxx> > --- > This is a quick script to explore the new credential API. A more robust > implementation would be to link to OS X's Security framework from C. [snip] > +def add_internet_password(protocol, hostname, username, password): > + # We do this over a pipe so that we can provide the password more > + # securely than as an argument which would show up in ps output. > + # Unfortunately this is possibly less robust since the security man > + # page does not document how to quote arguments. Emprically it seems > + # that using the double-quote, escaping \ and " works properly. I'm not sure this comment is correct... it looks like you're passing the password on the command line... > + username = username.replace('\\', '\\\\').replace('"', '\\"') > + password = password.replace('\\', '\\\\').replace('"', '\\"') > + command = ' '.join([ > + 'add-internet-password', '-U', > + '-r', protocol, > + '-s', hostname, > + '-a "%s"' % username, > + '-w "%s"' % password, ...right here. :-( -John -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html