I have this file that my company wrote a while back and we lost the original. How do i decrypt this? I didnt' code it, so i dont know how to recode it. Here's what it looks like: $o="QAAAJztjbnEnZGtmdHQ6JWRrYgIcZnUlOTsoAUA5DQ4OAD AAwwCwDQ1AHg0Csm5jOiVhaGhzYgKQAgECsAP2dQEAYmNuc3 QlOQORDidDYnRuYGkAACc7OHdvdycNKC0nQUtOSUwAACdRNA 1CaWRoY2J1Jz0nSUIAAFMqU0JEJ1dPVypCSURIQ0IAEFUnUSc2 KTcNUEJFAgBvc3N3AAA9KChwcHApaWJzKnNiZCllAABufSgNUEZ VSU5JQD0nU29uASB0J2Fua2InAIB3dQmAZHNiYycAAGV+J2Rod 351bmBvcydrZnAAACknU2gndWJxYnV0YidiaWAQSG5pYggAaHU nY2IIsSdzBHl0c3UCEG5kc2t+JwUAb25lbgUQKScNLQAAKA0jaG hoOiV3RFY+bWlSSQAARldzN19QU0J+Sn1UNmhSQgAAUXZTNm
How do we know this was really your/your company's script? There have been multiple instances already on here with people asking for help with decrypting a file they made and then it turns out that file has a copyright/warning at the top and that the poster shouldn't have access to the file. They were just trying to get a free script by having someone else decrypt it for them.
Is author still interested? I asked this myself. Anyhow author of topic did not post complete string or we could atleast try, this one seems base64_encoded string to me, and is not quite a sutiry. Dear author: if you ever revisit to see it, try print base64_decode($o); Some people also do this for encrypting $o = base64_encode(gzcompress("MY_PHP_CODE")); //revers $code = gzuncompress(base64_decode($o)); BUT, without knowing the encoding policy all remains guess. regards