美文网首页
Linux Base64

Linux Base64

作者: Arnoux | 来源:发表于2019-04-12 10:53 被阅读0次

    Base64

    编码转换

    编码转换网站

    https://evilcos.me/lab/xssor/

    linux

    linux下base64编码命令为:

    base64

    hello world!!! (按下ctrl+D结束输入)

    aGVsbG8gd29ybGQhISEK

    解码则使用base64 -d

    base64 -d
    aGVsbG8gd29ybGQhISEK
    hello world!!!
    

    执行base64编码后的命令

    base64
    echo "1234">/home/t.t
    ZWNobyAiMTIzNCI+L2hvbWUvdC50Cg==
    
    echo "ZWNobyAiMTIzNCI+L2hvbWUvdC50Cg=="|base64 -d|sh
    cat /tmp/test0001
    1234
    

    相关文章

      网友评论

          本文标题:Linux Base64

          本文链接:https://www.haomeiwen.com/subject/ndiqwqtx.html