PowerShell - 获取凭据解码密码?

发布于 2024-12-04 15:41:45 字数 468 浏览 0 评论 0原文

我想在我的代码中使用 Get-Credential cmdlet。

如何轻松地从 System.Security.SecureString 格式解码回密码?

(我必须在代码的一部分使用明文格式的密码)

$credential = Get-Credential
$credential.Password | ConvertFrom-SecureString
$credential
#How to show password in text format?

我的解决方法,但我认为还有一种正常的方法

$credCachePS = New-Object System.Net.CredentialCache 
$credCachePS.Add("uridummy", "NTLM", $credential) 
$credCachePS | select Password

I want to use the Get-Credential cmdlet in my code.

How is is possible to decode the password easily back from the System.Security.SecureString format?

(I must use the password in clear text format at one part in my code)

$credential = Get-Credential
$credential.Password | ConvertFrom-SecureString
$credential
#How to show password in text format?

My workaround, but I think there is also a normal way

$credCachePS = New-Object System.Net.CredentialCache 
$credCachePS.Add("uridummy", "NTLM", $credential) 
$credCachePS | select Password

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

楠木可依 2024-12-11 15:41:45

这就是我使用的(虽然这使它不安全,但我认为你明白):

$credential.GetNetworkCredential().password

This is what I use ( though this makes it insecure, but I think you understand that):

$credential.GetNetworkCredential().password
鸵鸟症 2024-12-11 15:41:45
PS > $credential.GetNetworkCredential().username
PS > $credential.GetNetworkCredential().password
PS > $credential.GetNetworkCredential().username
PS > $credential.GetNetworkCredential().password
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文