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.
63 Comments - Last post 21 minutes ago by doslover
15 Comments - Last post 26 minutes ago by doslover
71 Comments - Last post 30 minutes ago by copsofhalo
1,541 Comments - Last post 47 minutes ago by Calibr3
1,652 Comments - Last post 1 hour ago by Carenard
3 Comments - Last post 2 hours ago by fr0zenX
501 Comments - Last post 2 hours ago by a100Axolotls
74 Comments - Last post 7 minutes ago by Tristar
64 Comments - Last post 30 minutes ago by SirSage
11,746 Comments - Last post 55 minutes ago by Gusthewizard
272 Comments - Last post 1 hour ago by Delisper
61 Comments - Last post 1 hour ago by quijote3000
80 Comments - Last post 1 hour ago by quijote3000
9,160 Comments - Last post 1 hour ago by Venonat
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.