Skip to content

Instantly share code, notes, and snippets.

@kepocnhh
Last active October 14, 2023 16:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kepocnhh/6f79a14cfb079924adff3498a8beb108 to your computer and use it in GitHub Desktop.
Save kepocnhh/6f79a14cfb079924adff3498a8beb108 to your computer and use it in GitHub Desktop.
OS X security sample.
SERVICE_NAME='service_foo'
ACCOUNT_NAME='account_bar'
PASSWORD_VALUE='password_bar'
security delete-generic-password -s "$SERVICE_NAME" -a "$ACCOUNT_NAME" &> /dev/null
# Add a generic password item to the default keychain without warning.
security add-generic-password -s "$SERVICE_NAME" -a "$ACCOUNT_NAME" -w "$PASSWORD_VALUE"
if test $? -ne 0; then
echo 'Add password error!'; exit 1; fi
# Find a generic password item and display the password(only) for the item found.
PASSWORD_ACTUAL=$(security find-generic-password -s "$SERVICE_NAME" -a "$ACCOUNT_NAME" -w)
if test $? -ne 0; then
echo 'Find password error!'; exit 1; fi
if test "$PASSWORD_ACTUAL" != "$PASSWORD_VALUE"; then
echo 'Password error!'; exit 1; fi
echo 'Password as expected.'
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment