문제

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.

도움이 되었습니까?

해결책

In short: You can't.

In long:

IonCube is an encoder, and Xdebug is a debugger - not a decoder. It does not know how to read encoded files and even if it could get into the process of intercepting the PHP things that it does, it still won't be able to show you the source code.

When a file is encoded, it is first converted from text into "opcodes"—that is an internal representation of binary stuff which PHP can execute. At this stage, it is already useless for Xdebug.

And then it is encoded, which makes it even less possible to do anything with.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top