Wednesday, October 14, 2020

baze64 & decrypt base64 scripts

 

$ cat baze64
-------------------------------------------------------------------------------
#!/bin/bash
# encrypt in base64

read -p "Encode 2 base64 : " encdb64

echo "Here goes b64 crypted :: " && echo $encdb64 | base64
-------------------------------------------------------------------------------
 

$ cat debaze64
-------------------------------------------------------------------------------
#!/bin/bash
# decrypt base64 text

read -p "Decode from base64 : " dcdb64

echo "Here goes decrypted :: "  && echo $dcdb64 | base64 -d
administrator@ryzen:~ $
-------------------------------------------------------------------------------

No comments:

Post a Comment

Thank you for your comment. Will try to react as soon as possible.

Regards,

Networ King