How to decrypt the code

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
amir
Forum Contributor
Posts: 287
Joined: Sat Oct 07, 2006 4:28 pm

How to decrypt the code

Post by amir »

Hello,

I have downloaded a PHP code and all the code is encrypted. I have to configure that and its not working properly so I have to see what is wrong in a particular file. So how can I decrypt the code and convert it into its normal human readable form.

TIA!
kingconnections
Forum Contributor
Posts: 137
Joined: Thu Jul 14, 2005 4:28 pm

Post by kingconnections »

Most times the php code is encrypted for a reason. Like not getting thier code stolen. Normally, configuration part is not encrypted.
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

How to decrypt depends on how it was encrypted. Sometimes you can do it manually (simple), sometimes you have to intercept the op-codes (not simple.)

The majority, if not all, of the byte-code encryptions (caches really) out there have counterparts that can and will reverse the encoding. I would suggest that before you try to break the encoding that you contact the maker of it and talk to them about the problems you are encountering. In a large number of cases you likely aren't the first to have such an issue.
User avatar
volka
DevNet Evangelist
Posts: 8391
Joined: Tue May 07, 2002 9:48 am
Location: Berlin, ger

Post by volka »

Is this question related to viewtopic.php?p=339341 ?
Post Reply