What does this encoded string say, and how did you find out?

前端 未结 2 1654
日久生厌
日久生厌 2021-01-23 20:54

I\'m trying to build a catalog of products and I don\'t know what it is doing, and I\'d like to peek inside. Can someone figure out how to print the source code and tell me how?

相关标签:
2条回答
  • 2021-01-23 21:18

    Instead of eval(gzinflate(base64_decode($a))), do echo gzinflate(base64_decode($a)) and repeat with the result until you get useful source code.

    0 讨论(0)
  • 2021-01-23 21:21

    Change the eval call at the end of that junk to say echo instead. it'll spit out the decoded code.

    [...snip....]; ob_end_clean(); echo(gzinflate(base64_decode($a))); ob_end_flush();  ?>
                                   ^^^^---here
    
    0 讨论(0)
提交回复
热议问题