Dynadot โ€” .com Registration $8.99

How to Decode The Source?

Spaceship Spaceship
Watch
Impact
49
<?php // This file is protected by copyright law and provided under license. Reverse engineering of this file is strictly prohibited.
$OOO0O0O00=__FILE__;$O00O00O00=__LINE__;$OO00O0000=64;eval((base64_decode('JE8wMDBPME8wMD1mb3BlbigkT09PME8wTzAwLCdyYicpO3doaWxlKC0tJE8wME8wME8wMClmZ2V0
ygkTzAwME8wTzAwLDEwMjQpO2ZnZXRzKCRPMDAwTzBPMDAsNDA5Nik7JE9PMDBPMDBPMD0oYmFzZTY0X
RlY29kZShzdHJ0cihmcmVhZCgkTzAwME8wTzAwLDM3MiksJ1p5dmFJTkhtVDBoUVhPbkd3RUw2TXJLej
BamVrMStjOXgyL3FvczdKRjVDWTM0aXRmQlVEZ3BWUmJXdVNkbFA9JywnQUJDREVGR0hJSktMTU5PUFF
U1RVVldYWVphYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ejAxMjM0NTY3ODkrLycpKSk7ZXZhbCgkT08w
E8wME8wKTs=')));return;?>
0IdGXayGXayGXagoksr7zV0okHfx8pMJ0gdcEqoXErdc0Bt20BT40IdG6UyGXIStXvR20BTYhH0xkpMp
NdqAKOiAHMJkVEB1mTJA70o8KwJ0IStXayGXIStXvtq6DStXIStXaZthLt7K7op8MonLHgMXHxEKId4E
1N6aAOkq3WnIN5AKYfhpXb+aTikKdUODFHOMOAXUEF1HAvrME7kNAL8o1gMpEYMaD7Qv1ywqOIEMAmLI
hLDfO6qdwMr06rNrKrgxAKsN28pEoAs1JjKFCeHg4eVyfk7OD1zAV+moWXaIBXUwgO/kRnLYi0BqFhLquAsOYeVOohvEGXaZt6UyGXaZFnprp8KtJ0IdGXayGXayGXvquawFJAKNqAzTJTqfi8p
DjKd4n2Z4Q2dFesEo+vbtjmZ2h6Y9awJuAKOJeBZ7Tvku

Anyway to decode or encode the script back to original?

Thanks in advance!!!
 
0
•••
The views expressed on this page by users and staff are their own, not those of NamePros.
AfternicAfternic
looking at it quickly it looks to be base 64 encoded (hence the base64_decode call)

Try running the source through base64_decode.
 
0
•••
I tried to Decode using this method...it is not working...any idea?
<?php
$str = 'JE8wMDBPME8wMD1mb3BlbigkT 09PME8wTzAwLCdyYicpO3doaWxlKC0tJE8wME8wME8wMClmZ2V 0
ygkTzAwME8wTzAwLDEwMjQpO2ZnZXRzKCRPMDAwTzBPMDAsNDA 5Nik7JE9PMDBPMDBPMD0oYmFzZTY0X
RlY29kZShzdHJ0cihmcmVhZCgkTzAwME8wTzAwLDM3MiksJ1p5 dmFJTkhtVDBoUVhPbkd3RUw2TXJLej
BamVrMStjOXgyL3FvczdKRjVDWTM0aXRmQlVEZ3BWUmJXdVNkb FA9JywnQUJDREVGR0hJSktMTU5PUFF
U1RVVldYWVphYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ejAxMj M0NTY3ODkrLycpKSk7ZXZhbCgkT08w
E8wME8wKTs=';
echo base64_decode($str);
?>
 
0
•••
either the line breaks messed it up or something else...cuz its an invalid base64 string
 
0
•••
"Reverse engineering of this file is strictly prohibited."

Why are you ignoring this?

P.S. You'd have to base64_decode it multiple times (sometimes 100+), that's how the security is generated.
 
0
•••
I understand that it is prohibited...
I am taking this as a challenge to decode this script...of coz I am not using the script after it had been decoded...:)

Really appreciate if someone could share with me the best way to decode this...:P Thanks

P.S. I tried this site http://makcoder.sourceforge.net/demo/base64.php to decode it, but it is not working...
 
0
•••
Was this file generated by Zend encoder or similar ?
 
0
•••
Unless I am very much mistaken sdsinc Zend encoder does not use base64 encded source code.
 
0
•••
Tried Zend Encoder...not working...:(
 
0
•••
newsiness said:
I understand that it is prohibited...
I am taking this as a challenge to decode this script...of coz I am not using the script after it had been decoded...
it would be more of a challenge if you figured it out yourself by learning about encoding, rather than simply asking people on forums don't you think? ;)
 
0
•••
I have spent nearly a month but still can't figure it out...
 
0
•••
This file is generated by phpLockIT

But I think reverse engineering it is not that easy.

The key itself is encoded in the file itself. So maybe brute force attack will do.
 
0
•••
Have u tried this

Code:
Example#1 base64_decode() example
<?php
$str = 'VGhpcyBpcyBhbiBlbmNvZGVkIHN0cmluZw==';
echo base64_decode($str);
?> 

The above example will output:
This is an encoded string
 
0
•••
yuvanextgen how on earth would that help him to decode the script?
 
0
•••
Send me a PM of this file, I may be able to assist, but I will not be resposible for your actions.
 
0
•••
yuvanextgen said:
Have u tried this

Code:
Example#1 base64_decode() example
<?php
$str = 'VGhpcyBpcyBhbiBlbmNvZGVkIHN0cmluZw==';
echo base64_decode($str);
?> 

The above example will output:
This is an encoded string

I tried that before...it didnt work...thanks

Sakura said:
Send me a PM of this file, I may be able to assist, but I will not be resposible for your actions.

PM sent to you...thanks in advance!!!
 
0
•••
Dynadot โ€” .com Registration $8.99Dynadot โ€” .com Registration $8.99
Appraise.net
Unstoppable Domains
Domain Recover
DomainEasy โ€” Payment Flexibility
  • The sidebar remains visible by scrolling at a speed relative to the pageโ€™s height.
Back