A Little Fun

The_limit_does_not_exist.gif


...good luck to those who know what they're doing. :smh:
 
i used a base64 decoder and didn't work .. i really should be using my break for something less brainy lol
 
getting nothing. i'm not tech savvy. may need a one word clue or something.. just saying it's a string aint helping lol .. might as well be string cheese.. .. .. got these .. CRFeeGxCSuXXA 87cfe678659f9dd36121186ea6469917 6e6c00532cb4253bba521f8388259709841b44c6
 
Last edited:
poop???

P ``PP`00@ @ @ P0 @0�0 @P@ 0 0P @ P PP0 00��@ 0@P% P @�P `Q� P 0@P@P 0PP )0�@0 P@P `0 PP�0�P P 0PP0 @P P 00P 0@P@ 0 0P P0 �@P @ PP@`P0 0PPP@ % ` `0P%0 0P0@00@P @P0@ PP`@ P`PPP PP`P @0P)�

pop? ... po-po?
 
poop???

P ``PP`00@ @ @ P0 @0�0 @P@ 0 0P @ P PP0 00��@ 0@P% P @�P `Q� P 0@P@P 0PP )0�@0 P@P `0 PP�0�P P 0PP0 @P P 00P 0@P@ 0 0P P0 �@P @ PP@`P0 0PPP@ % ` `0P%0 0P0@00@P @P0@ PP`@ P`PPP PP`P @0P)�

pop? ... po-po?
getting nothing. i'm not tech savvy. may need a one word clue or something.. just saying it's a string aint helping lol .. might as well be string cheese.. .. .. got these .. CRFeeGxCSuXXA 87cfe678659f9dd36121186ea6469917 6e6c00532cb4253bba521f8388259709841b44c6
No, and no. :p

Here's the solution.

The text is encoded in hex once, then encoded in base64 20 times.

some python code to decode it:

Code:
data = '''
Insert huge encoded thing here
'''

data = data.replace('\n','')

for i in xrange(20):
    data = data.decode('base64')

data = data.decode('hex')
print "The decoded value is... %s" % data

after running the above code, this is the output:

"The decoded value is... THIS-IS-SPARTA"
 
No, and no. :p

Here's the solution.

The text is encoded in hex once, then encoded in base64 20 times.

some python code to decode it:

Code:
data = '''
Insert huge encoded thing here
'''

data = data.replace('\n','')

for i in xrange(20):
    data = data.decode('base64')

data = data.decode('hex')
print "The decoded value is... %s" % data

after running the above code, this is the output:

"The decoded value is... THIS-IS-SPARTA"

you freakin PUNK! ........... this blasted multi layered business. could at least tell us how many of what.

ye cursed smart wass.

i'm not playing anymore of your "decoding" games, punk. ....mutters.. cursed foul imprudent wretch. ..mutter-grumbles.. blasted pirate. . . .
 
Back
Top