Created
August 22, 2025 13:06
-
-
Save justaguywhocodes/518144627041d9bae45b986f10787fb3 to your computer and use it in GitHub Desktop.
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
# Read the Base64-encoded file | |
$base64String = Get-Content -Path "encodedfile.txt" -Raw | |
# Decode the Base64 string to bytes | |
$decodedBytes = [System.Convert]::FromBase64String($base64String) | |
# Save the decoded bytes to purple.dll | |
[System.IO.File]::WriteAllBytes("purple.dll", $decodedBytes) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment