Created
July 17, 2018 17:37
-
-
Save h3nryza/b59a232ef71148ff198b3cfe459cabaa to your computer and use it in GitHub Desktop.
Powershell Base64
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $test = -join ((65..122) | Get-Random -Count 10000 | % {[char]$_}) | |
| [Convert]::ToBase64String([System.Text.Encoding]::Unicode.GetBytes("$test")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment