CredentialLocker.psm1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 |
<#
.SYNOPSIS CredentialLocker is a module that provides commandlets to manage credentials in the password vault. .NOTES Version: 1.0.0 Date: 2019-09-10 Author: Markus Scholtes #> #Requires -Version 3.0 # Load assembly [VOID][Windows.Security.Credentials.PasswordVault,Windows.Security.Credentials,ContentType=WindowsRuntime] function Get-VaultCredential { <# .SYNOPSIS Retrieves credentials stored in the password vault searched by resource and/or user name. .DESCRIPTION Retrieves credentials stored in the password vault searched by resource and/or user name. If a password cannot be resolved a space is returned as password. If a credential does not exist $NULL is returned. .PARAMETER Resource Name of the resource to find .PARAMETER UserName Username to find .EXAMPLE Get-VaultCredential "https://github.com/" Retrieves stored user name(s) and password(s) for GitHub if credential exists .LINK https://gallery.technet.microsoft.com/scriptcenter/Powershell-Module-f0f91920 .NOTES Author: Markus Scholtes Created: 2019/09/10 #> Param([Parameter(ValueFromPipeline = $TRUE,ValueFromPipelineByPropertyName = $TRUE)][STRING]$Resource = $NULL, [STRING]$UserName = $NULL) if ((!$Resource) -And (!$UserName)) { Write-Error "Resource or user name has to be provided." return $NULL } # connect to password vault $VAULT = New-Object Windows.Security.Credentials.PasswordVault try { # retrieve all credentials, filter manually and unhide passwords # do not use FindAllByResource() and FindAllByUserName() since it is case sensitive $CREDENTIALS = $VAULT.RetrieveAll() | ? { ($_.Resource -match $Resource) -And ($_.UserName -match $UserName) } | %{ $_.RetrievePassword(); $_ } return $CREDENTIALS } catch { Write-Error "Error retrieving credentials" return $NULL } } function Show-VaultCredentials { <# .SYNOPSIS List all credentials stored in the password vault. .DESCRIPTION List all credentials stored in the password vault. If a password cannot be resolved a space is returned as password. .EXAMPLE Show-VaultCredentials Lists all credentials stored in the current user's password vault. .LINK https://gallery.technet.microsoft.com/scriptcenter/Powershell-Module-f0f91920 .NOTES Author: Markus Scholtes Created: 2019/09/10 #> Param([Parameter(ValueFromPipeline = $TRUE,ValueFromPipelineByPropertyName = $TRUE)][ValidateNotNullOrEmpty()][STRING]$Resource) # connect to password vault $VAULT = New-Object Windows.Security.Credentials.PasswordVault try { # retrieve all credentials and unhide passwords $CREDENTIALS = $VAULT.RetrieveAll() | %{ $_.RetrievePassword(); $_ } return $CREDENTIALS } catch { Write-Error "Error retrieving credentials" return $NULL } } function Add-VaultCredential { <# .SYNOPSIS Adds a credential to the password vault. .DESCRIPTION Adds a credential to the password vault. A resource, user name and password can be indicated or alternatively a password vault credential object. .PARAMETER Credential A password vault credential object .PARAMETER Resource Resource for the credential (URL or application name). .PARAMETER UserName The user name for the credential .PARAMETER Password The password for the credential .PARAMETER IE Generate web credential for browsers Internet Explorer or Edge (same as -Edge) .PARAMETER Edge Generate web credential for browsers Internet Explorer or Edge (same as -IE) .PARAMETER ApplicationId Set application id for credential .PARAMETER Application Set application name for credential .PARAMETER HIDE Hide credential in control panel (it will not be not hidden in Powershell) .EXAMPLE Add-VaultCredential -Resource "MyApp" -UserName "Logon" -Password "P@ssw0rd" Add a credential for a custom application .EXAMPLE Add-VaultCredential -Resource "https://www.outlook.com/" -UserName "fakeuser@microsoft.com" -Password "P@ssw0rd" -EDGE Add a credential for a website login with Edge or Internet Explorer .EXAMPLE Get-Credential | ConvertTo-VaultCredential -Resource "MyApp" | Add-VaultCredential -Application "MyApp" Show a dialog to obtain a Powershell credential, convert it to a password vault credential and store it in the password vault .LINK https://gallery.technet.microsoft.com/scriptcenter/Powershell-Module-f0f91920 .NOTES Author: Markus Scholtes Created: 2019/09/10 #> [CmdletBinding(DefaultParameterSetName = "STRINGS")] Param( [Parameter(ParameterSetName = "CREDENTIAL",Position = 0,ValueFromPipeline = $TRUE,ValueFromPipelineByPropertyName = $TRUE)][ValidateNotNullOrEmpty()][Windows.Security.Credentials.PasswordCredential]$Credential, [Parameter(ParameterSetName = "STRINGS",Position = 0,ValueFromPipeline = $TRUE,ValueFromPipelineByPropertyName = $TRUE)][ValidateNotNullOrEmpty()][STRING]$Resource, [Parameter(ParameterSetName = "STRINGS",Position = 1)][ValidateNotNullOrEmpty()][STRING]$UserName, [Parameter(ParameterSetName = "STRINGS",Position = 2)][ValidateNotNullOrEmpty()][STRING]$Password, [SWITCH]$IE, [SWITCH]$Edge, [STRING]$ApplicationId, [STRING]$Application, [SWITCH]$Hide ) # connect to password vault $VAULT = New-Object Windows.Security.Credentials.PasswordVault try { if ($PSCmdlet.ParameterSetName -eq "STRINGS") { # create new Credential $CREDENTIAL = New-Object Windows.Security.Credentials.PasswordCredential($Resource, $UserName, $Password) } if ($IE -or $Edge) { # set properties to mark as credential for Edge and IE $CREDENTIAL.Properties.set_item("application", "Internet Explorer") $CREDENTIAL.Properties.set_item("applicationid", (New-Object Guid("4e3cb6d5-2556-4cd8-a48d-c755c737cba6"))) } if ($ApplicationId) { # set ApplicationId for credential $CREDENTIAL.Properties.set_item("applicationid", (New-Object Guid($ApplicationId))) } if ($Application) { # set Application for credential $CREDENTIAL.Properties.set_item("application", $Application) } if ($Hide) { # hide credential in control panel $CREDENTIAL.Properties.set_item("hidden", $TRUE) } # add new credential to vault $VAULT.Add($CREDENTIAL) Write-Output "Credential of user $($CREDENTIAL.UserName) for resource $($CREDENTIAL.Resource) stored." } catch { Write-Error "Error storing credential of user $($CREDENTIAL.UserName) for resource $($CREDENTIAL.Resource)." } } function Remove-VaultCredential { <# .SYNOPSIS Removes credentials from the password vault. .DESCRIPTION Removes credentials from the password vault. A resource, user name and password can be indicated or alternatively a password vault credential object. .PARAMETER Credential A password vault credential object to remove .PARAMETER Resource The resource for which credentials are removed .PARAMETER UserName The user name for which credentials are removed .EXAMPLE Remove-VaultCredential -Resource "https://github.com/" Removes all credentials for github web page .EXAMPLE Remove-VaultCredential -UserName "logonname" Removes all credentials for user name "logonname" .EXAMPLE Remove-VaultCredential -Resource "https://github.com/" -UserName "logonname" Removes credential for user name "logonname" on github web page .EXAMPLE Get-VaultCredential -Resource "https://github.com/" -UserName "logonname" | Remove-VaultCredential Removes credential for user name "logonname" on github web page (same effect as example above) .LINK https://gallery.technet.microsoft.com/scriptcenter/Powershell-Module-f0f91920 .NOTES Author: Markus Scholtes Created: 2019/09/10 #> [CmdletBinding(DefaultParameterSetName = "STRINGS")] Param( [Parameter(ParameterSetName = "CREDENTIAL",Position = 0,ValueFromPipeline = $TRUE,ValueFromPipelineByPropertyName = $TRUE)][ValidateNotNullOrEmpty()][Windows.Security.Credentials.PasswordCredential]$Credential, [Parameter(ParameterSetName = "STRINGS",Position = 0,ValueFromPipeline = $TRUE,ValueFromPipelineByPropertyName = $TRUE)][STRING]$Resource = $NULL, [Parameter(ParameterSetName = "STRINGS",Position = 1)][STRING]$UserName = $NULL ) if ($PSCmdlet.ParameterSetName -eq "STRINGS") { if ((!$Resource) -And (!$UserName)) { Write-Error "Resource or Username has to be provided." return $NULL } } else { # the parameter was a password vault credential $Resource = $Credential.Resource $UserName = $Credential.UserName } # connect to password vault $VAULT = New-Object Windows.Security.Credentials.PasswordVault try { # retrieve all credentials and filter manually # do not use FindAllByResource() and FindAllByUserName() since it is case sensitive $CREDENTIALS = $VAULT.RetrieveAll() | ? { ($_.Resource -match $Resource) -And ($_.UserName -match $UserName) } $CREDENTIALS | % { $VAULT.Remove($_) Write-Output "Credential of user $($_.UserName) for resource $($_.Resource) removed." } } catch { Write-Error "Error removing credential(s)." } } function ConvertTo-VaultCredential { <# .SYNOPSIS Converts Powershell credential to password vault credential. .DESCRIPTION Converts Powershell credential to password vault credential. Requires password to be set in Powershell credential. .PARAMETER Credential Powershell credential object .PARAMETER Resource The resource for which the password vault credential is created .EXAMPLE Get-Credential | ConvertTo-VaultCredential -Resource "https://wikipedia.org/" Shows a dialog to obtain credential information and convert it to a password vault credential for the Wikipedia web page .LINK https://gallery.technet.microsoft.com/scriptcenter/Powershell-Module-f0f91920 .NOTES Author: Markus Scholtes Created: 2019/09/10 #> Param([Parameter(ValueFromPipeline = $TRUE,ValueFromPipelineByPropertyName = $TRUE)][ValidateNotNullOrEmpty()][PSCREDENTIAL]$Credential, [ValidateNotNullOrEmpty()][STRING]$Resource) try { # create and return password vault credential return New-Object Windows.Security.Credentials.PasswordCredential($Resource, $Credential.UserName, $Credential.GetNetworkCredential().Password) } catch { Write-Error "Error creating password vault credential." return $NULL } } function ConvertFrom-VaultCredential { <# .SYNOPSIS Converts password vault credential to Powershell credential. .DESCRIPTION Converts password vault credential to Powershell credential. The resource information gets lost on conversion. .PARAMETER Credential Password vault credential object .EXAMPLE Get-VaultCredential -Resource "https://msn.com/" -UserName "LilyOhLily" | ConvertFrom-VaultCredential Converts the credential for MSN in the password vault to a Powershell credential .LINK https://gallery.technet.microsoft.com/scriptcenter/Powershell-Module-f0f91920 .NOTES Author: Markus Scholtes Created: 2019/09/10 #> Param([Parameter(ValueFromPipeline = $TRUE,ValueFromPipelineByPropertyName = $TRUE)][ValidateNotNullOrEmpty()][Windows.Security.Credentials.PasswordCredential]$Credential) try { # unhide password in password vault credential $Credential.RetrievePassword() # convert password to secure text $SECUREPASSWORD = ConvertTo-SecureString $Credential.Password -AsPlainText -Force # create and return Powershell Credential return New-Object System.Management.Automation.PSCredential($Credential.UserName, $SECUREPASSWORD) } catch { Write-Error "Error creating PSCredential." return $NULL } } # Export functions Export-ModuleMember -Function @( 'Get-VaultCredential', 'Show-VaultCredentials', 'Add-VaultCredential', 'Remove-VaultCredential', 'ConvertTo-VaultCredential', 'ConvertFrom-VaultCredential' ) |