Last active
May 24, 2021 09:31
-
-
Save Karneades/38cce20ca960da821c7b091c9d9f93fa to your computer and use it in GitHub Desktop.
Simple python script to decode encoded PowerShell commands
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
# Karneades (2019) | |
# CyberChef recipe: https://gchq.github.io/CyberChef/#recipe=From_Base64('A-Za-z0-9%2B/%3D',true)Remove_null_bytes() | |
import sys | |
from base64 import b64encode,b64decode | |
if len(sys.argv) < 2: | |
print ("Usage: python3 ps-decode.py <encodedCommand>") | |
sys.exit(-1) | |
encodedCommand = sys.argv[1] | |
try: | |
print (b64decode(encodedCommand).decode('UTF-16LE')) | |
except Exception as e: | |
print (str(e)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment