Estoy trabajando en PowerShell y tengo un código que convierte correctamente una contraseña ingresada por el usuario en texto sin formato:
$SecurePassword = Read-Host -AsSecureString "Enter password" | convertfrom-securestring | out-file C:\Users\tmarsh\Documents\securePassword.txt
He probado varias formas de convertirlo de nuevo, pero ninguna parece funcionar correctamente. Más recientemente, probé con lo siguiente:
$PlainPassword = Get-Content C:\Users\tmarsh\Documents\securePassword.txt
#convert the SecureString object to plain text using PtrToString and SecureStringToBSTR
$BSTR = [System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($PlainPassword)
$PlainPassword = [System.Runtime.InteropServices.Marshal]::PtrToStringAuto($BSTR)
[Runtime.InteropServices.Marshal]::ZeroFreeBSTR($BSTR) #this is an important step to keep things secure
Esto también me da un error.
Cannot convert argument "s", with value: "01000000d08c9ddf0115d1118c7a00c04fc297eb0100000026a5b6067d53fd43801a9ef3f8ef9e43000000000200000000000366000
0c0000000100000008118fdea02bfb57d0dda41f9748a05f10000000004800000a000000010000000c50f5093f3b87fbf9ee57cbd17267e0a10000000833d1d712cef01497872a3457bc8
bc271400000038c731cb8c47219399e4265515e9569438d8e8ed", for "SecureStringToBSTR" to type "System.Security.SecureString": "Cannot convert the "01000000
d08c9ddf0115d1118c7a00c04fc297eb0100000026a5b6067d53fd43801a9ef3f8ef9e430000000002000000000003660000c0000000100000008118fdea02bfb57d0dda41f9748a05f10
000000004800000a000000010000000c50f5093f3b87fbf9ee57cbd17267e0a10000000833d1d712cef01497872a3457bc8bc271400000038c731cb8c47219399e4265515e9569438d8e8
ed" value of type "System.String" to type "System.Security.SecureString"."
At C:\Users\tmarsh\Documents\Scripts\Local Admin Script\PlainTextConverter1.ps1:14 char:1
+ $BSTR = [System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($PlainPassw ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [], MethodException
+ FullyQualifiedErrorId : MethodArgumentConversionInvalidCastArgument
Cannot find an overload for "PtrToStringAuto" and the argument count: "1".
At C:\Users\tmarsh\Documents\Scripts\Local Admin Script\PlainTextConverter1.ps1:15 char:1
+ $PlainPassword = [System.Runtime.InteropServices.Marshal]::PtrToStringAuto($BSTR ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [], MethodException
+ FullyQualifiedErrorId : MethodCountCouldNotFindBest
Cannot convert argument "s", with value: "", for "ZeroFreeBSTR" to type "System.IntPtr": "Cannot convert null to type "System.IntPtr"."
At C:\Users\tmarsh\Documents\Scripts\Local Admin Script\PlainTextConverter1.ps1:16 char:1
+ [Runtime.InteropServices.Marshal]::ZeroFreeBSTR($BSTR) #this is an important ste ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [], MethodException
+ FullyQualifiedErrorId : MethodArgumentConversionInvalidCastArgument
Password is: 01000000d08c9ddf0115d1118c7a00c04fc297eb0100000026a5b6067d53fd43801a9ef3f8ef9e430000000002000000000003660000c0000000100000008118fdea02bfb57d0dda41f97
48a05f10000000004800000a000000010000000c50f5093f3b87fbf9ee57cbd17267e0a10000000833d1d712cef01497872a3457bc8bc271400000038c731cb8c47219399e4265515e9569
438d8e8ed
¿Alguien sabe de una forma que funcione para esto?
powershell
securestring
tmarsh
fuente
fuente
[Runtime.InteropServices.Marshal]::ZeroFreeBSTR($BSTR)
.$BSTR = $null
?$null
, porque aquí estamos tratando con objetos no administrados. No obtendrá un error de inmediato, pero creo que puede tener problemas a medida que pasa el tiempo.ZeroFreeBSTR()
, como se indicó, el uso dePtrToStringAuto()
siempre fue conceptualmente defectuoso y, ahora que PowerShell es multiplataforma, falla en plataformas similares a Unix. Siempre debería haber sidoPtrToStringBSTR()
- vea esta respuesta .También puede utilizar PSCredential.GetNetworkCredential ():
$SecurePassword = Get-Content C:\Users\tmarsh\Documents\securePassword.txt | ConvertTo-SecureString $UnsecurePassword = (New-Object PSCredential "user",$SecurePassword).GetNetworkCredential().Password
fuente
System.Management.Automation.PSCredential
en versiones anteriores de PS cuando no se reconozca el nombre de tipo corto.[PSCredential]::new(0, $SecurePassword).GetNetworkCredential().Password
[System.Net.NetworkCredential]::new("", $SecurePassword).Password
La forma más sencilla de volver a convertirlo en PowerShell
[System.Net.NetworkCredential]::new("", $SecurePassword).Password
fuente
SecureString
se introdujo en .Net Framework 4.0. En PowerShell v2 lo intenté,(New-Object -TypeName System.Net.NetworkCredential -ArgumentList "u",$SecureString).Password
pero desafortunadamenteSecureString
se convierte silenciosamente aString
. La llamada parece tener éxito, pero laPassword
propiedad es entonces el valor literal "System.Security.SecureString". Ten cuidado.En PS 7, puede usar
ConvertFrom-SecureString
y-AsPlainText
:$UnsecurePassword = ConvertFrom-SecureString -SecureString $SecurePassword -AsPlainText
https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.security/ConvertFrom-SecureString?view=powershell-7#parameters
fuente