对 eval() 进行 base64_encode;

发布于 2024-11-28 02:12:15 字数 231 浏览 0 评论 0原文

有没有一种方法可以对这样的内容进行编码:

eval("echo 'String';");

使用base64_encode,然后调用base64_decode并获取结果String而没有任何回显 或额外的eval 函数?

Is threre a way to encode something like this :

eval("echo 'String';");

with base64_encode, and then to call base64_decode and get the result String without any echo or additional eval functions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

错々过的事 2024-12-05 02:12:15

您要求 base64_decode执行任意代码?那是行不通的。它对数据进行操作,而不是代码,因此您解码的任何内容都必须是数据字符串。直接编码'String'不行吗?否则,您必须再次运行 eval 将数据转换为代码:eval(base64_decode($mysterydata));

You are asking for base64_decode to execute arbitrary code? That doesn't work. It operates on data, not code, and so whatever you decode has to be a data string. Can't you just encode 'String' directly? Otherwise, you'll have to run eval again to turn data into code: eval(base64_decode($mysterydata));.

非要怀念 2024-12-05 02:12:15

eval('die(base64_decode("bla"))');

像这样的东西?

如果你想混淆你的代码,请查看这个网站:
http://demo.dmwtechnologies.com/PHP/PhpObfuscator/index.php

eval('die(base64_decode("bla"))');

something like this?

if you want to obfuscate your code have a look at this site:
http://demo.dmwtechnologies.com/PHP/PhpObfuscator/index.php

童话 2024-12-05 02:12:15

不能在 eval 中使用 echo,但是这样怎么样?:

echo base64_decode(base64_encode(eval("return 'String';")));

Not with echo in the eval, but how about this?:

echo base64_decode(base64_encode(eval("return 'String';")));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文