i never understand these puzzles. How do you go about solving it?
Comment has been collapsed.
The PHP code would be known by programmers, web designers, and hackers:
eval(gzinflate(base64_decode('S03OyFd41DDDwzVCQV/BzETBVsEkRcHERMHEVMHcHMY2VDC3QLDNzJHUWGBTY4pFjSlEjTkhc5DVYzMH00ycapDEcboZqxpDFDdA1KDbZYjDHDT34HAbfrvwmWOIw++o4vjdTIwafG7G5R48aohxD9Y0Rowa1Dii3F/IdmFJYwT9hWwOnnSIYQ4+96C6zTjlUcNMawA=')));
Can either be runned from a web server or manually decoded by going backwards through it.
In this case it was Base 64 decoding. Then it was gzipped so extract from that.
If your really lazy about writing a few lines of code, you can use a website tool to decode such as:
http://ddecode.com/phpdecoder/
Either way you are left with:
echo ‘HEX / 64 = 4d 44 45 77 4d 44 41 78 4d 44 41 67 4d 44 45 78 4d 44 41 78 4d 44 45 67 4d 44 45 78 4d 54 41 77 4d 44 41 67 4d 44 45 78 4d 44 45 78 4d 54 45 67 4d 44 45 78 4d 44 45 78 4d 54 41 67 4d 44 45 78 4d 44 45 77 4d 44 45 67 4d 44 45 78 4d 44 41 77 4d 44 45 67 4d 44 41 78 4d 54 45 77 4d 54 41 67 4d 44 41 78 4d 44 41 77 4d 44 41 67 4d 44 45 77 4d 44 45 78 4d 44 45 67 4d 44 41 78 4d 54 45 77 4d 44 41 67 4d 44 45 77 4d 44 41 78 4d 54 41 67 4d 44 41 78 4d 54 41 77 4d 54 41 67 4d 44 41 78 4d 54 41 77 4d 54 41 67 4d 44 41 78 4d 44 45 78 4d 44 45 67 4d 44 45 77 4d 44 41 78 4d 54 45 67 4d 44 45 77 4d 44 41 77 4d 54 41 67 4d 44 41 78 4d 54 41 78 4d 44 41 67 4d 44 41 78 4d 54 41 78 4d 44 41 67 4d 44 45 77 4d 54 41 77 4d 54 41 67 4d 44 41 78 4d 44 45 78 4d 44 45 67 4d 44 45 77 4d 54 41 78 4d 54 41 67 4d 44 45 77 4d 44 41 77 4d 54 41 67 4d 44 45 77 4d 54 45 77 4d 44 45 67 4d 44 45 77 4d 44 41 77 4d 44 45 67 4d 44 45 77 4d 54 45 77 4d 54 41 3d’;
The "HEX / 64" is a hint that the next part of the code was converted into Hexadecimal and then Base 64 encoded again.
You end up with:
Binary = 01000100 01100101 01110000 01101111 01101110 01101001 01100001 00111010 00100000 01001101 00111000 01000110 00110010 00110010 00101101 01000111 01000010 00110100 00110100 01010010 00101101 01010110 01000010 01011001 01000001 01011010
That binary code then says "Deponia: M8F22-GB44R-VBYAZ"
Comment has been collapsed.
46 Comments - Last post 7 minutes ago by m0r1arty
12 Comments - Last post 28 minutes ago by Gamy7
219 Comments - Last post 5 hours ago by darktribble
517 Comments - Last post 5 hours ago by abendorg
239 Comments - Last post 11 hours ago by y2
43 Comments - Last post 12 hours ago by malkavian1331
16 Comments - Last post 19 hours ago by Tenn
315 Comments - Last post 7 minutes ago by m0r1arty
35 Comments - Last post 9 minutes ago by 404HPKVV
137 Comments - Last post 27 minutes ago by ayuinaba
5 Comments - Last post 33 minutes ago by Klaudika
150 Comments - Last post 33 minutes ago by Coldwalls
14 Comments - Last post 39 minutes ago by kungfujoe
4 Comments - Last post 41 minutes ago by LittleBibo1
Should be easy and straight forward for those with a bit of knowledge in encoding, even got step by step hints on the way...
<?php
if (strpos($_SERVER['PHP_SELF'],"giveaway.php")) {
eval(gzinflate(base64_decode('S03OyFd41DDDwzVCQV/BzETBVsEkRcHERMHEVMHcHMY2VDC3QLDNzJHUWGBTY4pFjSlEjTkhc5DVYzMH00ycapDEcboZqxpDFDdA1KDbZYjDHDT34HAbfrvwmWOIw++o4vjdTIwafG7G5R48aohxD9Y0Rowa1Dii3F/IdmFJYwT9hWwOnnSIYQ4+96C6zTjlUcNMawA=')));
exit;
}
?>
The game key is simply encoded inside. Let me know when you have got it! Have fun :)
Comment has been collapsed.