macOS - Security Tools
- Security terminal tool
- https://ss64.com/mac/security.html
- https://www.netmeister.org/blog/keychain-passwords.html
- To add a password to the security tool
$ security add-generic-password -a ${USER} -s playground -w <the-password-that-needs-to-be-saved>
- Alternatively, you can also let security(1) prompt you interactively for the password, by leaving out the last argument to the ‘-w’ flag:
$ security add-generic-password -a ${USER} -s playground -w password data for new item: retype password for new item: $
- https://www.huntress.com/blog/built-in-macos-security-tools