Need encoded PHP decoded.

Status
Not open for further replies.

Fuggz

Power Member
Joined
Mar 25, 2010
Messages
606
Reaction score
613
I bought a few PHP scripts a while ago. The guy who sold them to me did so happily, then when I opened up the index.php, it was encoded, and anything I use the scripts on have his link on them. When I asked him about it, he made a snide remark like, "I just sold you the scripts, I retain the rights" and laughed.

Is there any way I can decode the php? I know how to escape javascript, but have no idea how to decode this.

TIA
 
post the sample of code, maybe can help...
 
AFAIK, php scripts are encoded using ioncube or zend encoder to protect piracy.

You will need to hire a pro-cracker who can reverse engineer those scripts for you. This is NOT hack forums so I dont think we can discuss it here.

Search on some hack forums and hire someone if the scripts are worth it.
 
First you need to determine what type of coding was used.


What code does have strings have in the file? That should give a clue into what type of decoding you need

YTM0NZomIzI2OTsmeYQ==
dw(key,
ky+codeIt
i92(
function rm
varsJsCmds=""
JScript.Encode
%35%67%20
ar[0]
function process(ar)
$o=something:
$_F=__FILE__
eval(gzinflate(base64_decode('...')))



I suggest you just post the file and hope someone will decode it.
 
I agree with thevil. Without seeing a portion of the file, no one can tell you how to decode it. The easy case in when they've just using simple encoding methods. It keeps the average person from making changes, but doesn't take much effort to decode. Quite often you just have to look for 'eval' in the script and change it to 'echo' and it will show you the unencoded script. Occasionally people will encode it multiple times and you'll have to repeat the process.

Other scripts use commercial encoding such as Zend or Ioncube. Occasionally you'll find a script where there is one decoding script that has been encrypted with Zend or Ioncube and the other files have been encoded using a more simple method. This seems to be the case when the developer didn't want to pay for expensive encoding of all the script. Decode the decoder, and the rest is easy.
 
you should check crypo.com where you would find lot of online tools to decode, probably it could help you
 
No free took will decode ionCube you will have to pay one of those sites to do it.

If they used ionCube to encode it that is.
 
No free took will decode ionCube you will have to pay one of those sites to do it.

If they used ionCube to encode it that is.

There are tools on the web, no charge, just download and go...
It depends on their age as to how good they are, some are good at older versions, some are more up to date.

Just be VERY CAREFUL when visiting these types of sites/forums with such software and tools.
Be EVEN MORE CAREFUL with what you download - VIRUS CHECK LOTS!!! locally and use VirusTotal too.
(ideally run whatever you get in a VirtualMachine to be even more safe, they're normally offline tools, so drop your net connection too, to ensure no trojan/backdoor activity - I run on an old laptop normally)
If you're not sure what you're doing and not aware of keeping yourself very safe online, don't explore these places... you're machine may end up infected and/or exploited

Si
 
I do that...
I can decode nearly all encoded files (ioncube, zend and others)
If you're interested i can open a new thread to share the scripts.
 
Status
Not open for further replies.
Back
Top