You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you get a token and don't supply a password in the invocation script, it prompts you for a password. At this time, that password is displayed in the powershell window in plain text. In New-GuacToken.ps1, you should consider making password a non-required parameter, and instead doing an if-check on it as a param. If it's not passed, request it as a secure string with Read-Host "Enter Password" -AsSecureString
or something like that.
The text was updated successfully, but these errors were encountered:
When you get a token and don't supply a password in the invocation script, it prompts you for a password. At this time, that password is displayed in the powershell window in plain text. In New-GuacToken.ps1, you should consider making password a non-required parameter, and instead doing an if-check on it as a param. If it's not passed, request it as a secure string with
Read-Host "Enter Password" -AsSecureString
or something like that.
The text was updated successfully, but these errors were encountered: