0

I have been researching for a few days now, and have found no useful tutorials or guides on how to perform a decode of an ioncube encoded file by using xdebug.. Multiple SO post answers do not serve a starting place for a complete beginner.

4

1 回答 1

3

简而言之:你不能。

长篇:

IonCube 是一个编码器,而 Xdebug 是一个调试器——而不是解码器。它不知道如何读取编码文件,即使它可以进入拦截它所做的 PHP 事情的过程,它仍然无法向您显示源代码。

当文件被编码时,它首先从文本转换为“操作码”——这是 PHP 可以执行的二进制内容的内部表示。在这个阶段,它对于 Xdebug 已经没有用了。

然后它编码,这使得它更不可能做任何事情。

于 2013-06-23T10:08:52.007 回答