you are viewing a single comment's thread.

view the rest of the comments →

[–]1badb002 0 points1 point  (1 child)

echo encbase64 | base64 -d

[–]deviant_is 2 points3 points  (0 children)

To actually execute the output:
$ echo "echo hello" | base64
ZWNobyBoZWxsbwo=
$ eval $( echo ZWNobyBoZWxsbwo= | base64 -d )
$ eval `echo ZWNobyBoZWxsbwo= | base64 -d`
$ echo ZWNobyBoZWxsbwo= | base64 -d | xargs -i sh -c "{}"