开发者

Is there a way to decode this PHP code?

开发者 https://www.devze.com 2023-03-25 10:31 出处:网络
I have this PHP code, and it appears to be obfuscated, instead of the massive line of code, I just substituted it with the word \"code\":

I have this PHP code, and it appears to be obfuscated, instead of the massive line of code, I just substituted it with the word "code":

<?php
eval("?>".gzuncompress(base64_decode("code"))); ?>

Would there be any potential way of decoding said 开发者_高级运维code?


Sure, just replace the eval() with echo(). Based on experience, though, the code in there will probably be obfuscated as well.


echo gzuncompress(base64_decode("code")));

And, then, use auto format feature of some IDE

0

精彩评论

暂无评论...
验证码 换一张
取 消