dFshadow All American 9507 Posts user info edit post |
i'm trying to modify a script i purchased a license for use (obviously the license doesn't cover modifying the actual code, but i need to, for legit reasons because they've encrypted nearly all their php. it's really annoying - i open a php file and i see random strings of letters and numbers where functions and all should be.
is there any way to decrypt this code without a key? 10/22/2007 11:55:56 PM |
qntmfred retired 40726 Posts user info edit post |
it doesn't sound very legit
[Edited on October 23, 2007 at 12:13 AM. Reason : buying a license doesn't entitle you to use it contrary to the rights of the license] 10/23/2007 12:12:04 AM |
dFshadow All American 9507 Posts user info edit post |
i know but they've stopped developing it now and they're not going to fix this simple little file upload bug that i know i can fix myself if i can only look at the code 10/23/2007 12:20:52 AM |
mellocj All American 1872 Posts user info edit post |
it depends how they encoded it. maybe you could post some of the code. 10/23/2007 7:00:57 AM |
BigMan157 no u 103354 Posts user info edit post |
)
it can't be too strong an encoding scheme since it has to be decoded on the fly, so it's probably not a hash and is something more along the lines of a caesar cipher.
there has to be some php code in there that decodes everything, just change the code of that to echo out everything it decodes 10/23/2007 8:30:07 AM |
evan All American 27701 Posts user info edit post |
they most likely fed it through zend optimizer 10/23/2007 9:19:05 AM |
dFshadow All American 9507 Posts user info edit post |
it's encoded using ionCube - i've found zendecode.com to try and do it for free
i'll see where that leads. 10/23/2007 11:36:41 AM |
mellocj All American 1872 Posts user info edit post |
yea if its encoded with ioncube or zend then it isn't decoded in the php file itself. 10/23/2007 7:58:53 PM |