Need help to convert all hex characters contained in a text file to string or ASCII. Hex characters appear in a standard format of
user1 domain1 7374726f6e6770617373776f7264403130
user2 domain2 7374726f6e6770617373776f7264403120
After conversion it should show as
user1 domain1 strongpassword@10
the text file contains the multiple passwords, all arranged in a row
Like this:
$h = 7374726f6e6770617373776f7264403130
-join ($h -split '(..)' | ? { $_ } | % { [char][convert]::ToUInt32($_,16) })
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With