Forked from betillogalvanfbc/gist:c646eb267b8af4ecee0fe56607cd38c9
Created
November 29, 2021 08:03
-
-
Save reanimat0r/c7dd940d89b7c36836671c979c1741a5 to your computer and use it in GitHub Desktop.
Simple example Hex to Text
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
#Text to HEX | |
echo "BetilloPOC" | xxd -ps -c 200 | tr -d '\n' | |
#Hex to Text | |
echo '426574696c6c6f504f43' | xxd -ps -r |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment