There is a file in my server which is encrypted using IonCube encryption, is it possible to decrypt this file? if so what are the steps to be done?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
from what i could find out about ionCube in the last five minutes, it compiles the code to some bytecode and encrypts that bytecode. decryption can be done on a licensed machine only.
so i think it will be possible (with more or less efford) to tamper the runtime on a licensed machine to obtain the unencoded bytecode, since all needed crypto stuff has to be there for the normal operation.
decompiling that bytecode back to readable PHP code is a totally different thing … at least all comments will be gone, and since it does compiler optimizations, it’s unlikely to be able to reproduce the same code. probably a great efford.