Shell Base64 解密教程:快速解密 Base64 编码字符串
在 Shell 中,可以使用 base64 命令进行 Base64 解密。\n\n解密命令如下:\n\nshell\necho "BASE64_ENCODED_STRING" | base64 -d\n\n\n将 BASE64_ENCODED_STRING 替换为要解密的 Base64 编码字符串。\n\n例如,要解密 SGVsbG8gd29ybGQh,可以使用以下命令:\n\nshell\necho "SGVsbG8gd29ybGQh" | base64 -d\n\n\n输出结果为 Hello world!
原文地址: https://www.cveoy.top/t/topic/pZej 著作权归作者所有。请勿转载和采集!