echo "..." | grep -v -- ----- | tr -d '\n' | base64 -d | openssl asn1parse -inform DER
Last active
September 2, 2022 12:41
-
-
Save iegik/c98be8883b343655b6d6c34498957f0c to your computer and use it in GitHub Desktop.
Unencript
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
#!/bin/sh | |
for i in `ls -1 *.enc`; do openssl aes-256-cbc -d -a -salt -pass $@ -in $i -out ${i%%.enc} ; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment