- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
试图澄清 -AsPlainText
ConvertTo-SecureString 中的参数小命令:
-AsPlainText
Specifies a plain text string to convert to a secure string. The secure string cmdlets help protect confidential text. The text is encrypted for privacy and is deleted from computer memory after it is used. If you use this parameter to provide plain text as input, the system cannot protect that input in this manner. To use this parameter, you must also specify the Force parameter.
最佳答案
SecureString 的重点是在内存中加密字符串。 ConvertTo-SecureString -AsPlainText
的目的|是将已经明文的密码转换为安全的密码。但是,问题在于您在内存中已经有一个纯文本字符串,这并不能真正为您提供太多保护。ConvertTo-SecureString
更喜欢采用已经加密的字符串和 key 并将它们转换为安全字符串,因此明文值永远不会存储在任何地方的内存中。或者,您也可以使用其他方法来创建 SecureString,例如 Read-Host -Prompt "Enter password" -AsSecureString
关于security - AsPlainText 安全性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25124582/
试图澄清 -AsPlainText ConvertTo-SecureString 中的参数小命令: -AsPlainText Specifies a plain text string to conv
PSScriptAnalyzer 有一个 PSAvoidUsingConvertToSecureStringWithPlainText 警告。这意味着使用以下代码将失败。 $password = [S
通过以下命令,我可以检索 Get-AzKeyVaultSecret cmdlet 支持的参数列表(或者是字典?不幸的是,我的 Powershell 知识非常有限): PS C:\> $params =
通过以下命令,我可以检索 Get-AzKeyVaultSecret cmdlet 支持的参数列表(或者是字典?不幸的是,我的 Powershell 知识非常有限): PS C:\> $params =
我是一名优秀的程序员,十分优秀!