-
-
Save xtravar/74f7243d0f972d5fa57b9856c55b4d9f to your computer and use it in GitHub Desktop.
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
-- 1. Create a new generic password entry in Keychain Access called "WHATEVER_AnyConnect_VPN" (the name in Keychain access must match that in line 39 below) with your password for the Cisco AnyConnect VPN server. | |
-- 2. Open this script in Script Editor (both this and the above are in the Applications->Utilities folder) and "Save as.." an Application (.app) with desired name. | |
-- 3. Open Security & Privacy System Preferences, go to Privacy, Accessibility. | |
-- 4. Enable the above .app so it can access Accessibility | |
-- 5. Copy and paste a nice icon on the generic Applescript icon (I used a copy of the default AnyConnect one) | |
-- 6. Add the new .app to /Users/[yourshortname]/Applications with a shortcut to your Dock | |
-- 7. Enjoy the fast connection with no need to enter password and increased security of not having a sensitive password stored as plain text | |
-- 8. Run script again to close connection | |
--------------------- | |
--------------------- | |
-- setup -- | |
-- change to wherever you install script to gen OTP token from seed | |
set otpGenApp to "/Users/user/bin/otpgen" | |
-- label of item in keychain for password | |
set keychainPasswordLabel to "MyVPN_Password" | |
-- label of item in keychain for token seed (hex string) | |
set keychainTokenSeedLabel to "MyVPN_TokenSeed" | |
-- probably don't need to change this if you're using keychain | |
set findPassApp to "/usr/bin/security find-generic-password -wl" | |
-- end setup -- | |
---------------------- | |
---------------------- | |
set targetApp to "Cisco AnyConnect Secure Mobility Client" | |
-- Determine if AnyConnect is currently running | |
tell application "System Events" | |
set processExists to exists process targetApp | |
end tell | |
-- Close connection if running; else start connection and fill in password | |
if processExists is true then | |
tell application targetApp | |
quit | |
end tell | |
else | |
tell application targetApp | |
activate | |
end tell | |
tell application "System Events" | |
-- Wait for first window to open. Do nothing. | |
repeat until (window 1 of process targetApp exists) | |
delay 1 | |
end repeat | |
-- You may need to uncomment below if your OpenConnect implementation requires a keystroke to accept the default VPN | |
tell process targetApp | |
keystroke return | |
end tell | |
-- Wait for second window to open and then automatically enter password extracted from your Keychain | |
repeat until exists ((first window whose name starts with "Cisco AnyConnect | ") of process targetApp) | |
delay 1 | |
end repeat | |
tell process targetApp | |
-- This is where the the password in the Keychain is accessed for use as input rather than being hardcoded as plain text in other versions of this script out in the wild | |
set PSWD to do shell script findPassApp & " " & quoted form of keychainPasswordLabel | |
keystroke PSWD as text | |
keystroke tab | |
delay 1 | |
set TOKENSEED to do shell script findPassApp & " " & quoted form of keychainTokenSeedLabel | |
set TOKEN to do shell script otpGenApp & " " & quoted form of TOKENSEED | |
keystroke TOKEN as text | |
keystroke return | |
end tell | |
-- Autoclick on "Accept" of AnyConnect Banner window. If you have no welcome banner that needs acceptance, comment out these lines to the first "end tell" below | |
repeat until (window "Cisco AnyConnect - Banner" of process targetApp exists) | |
delay 1 | |
end repeat | |
tell process targetApp | |
keystroke return | |
end tell | |
end tell | |
end if |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment