Jump to content
SubSpace Forum Network

Recommended Posts

  • Replies 79
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Posted Images

Posted

4C65657420737065616B2069736E2774207175697465206D79207374796C

652C20736F20492066696775726564204920776F756C6420706F73742069

7420696E206865782E0D0A0D0A4865782069732065617369657220746F20

706F7374207468616E2062696E6172792C20776869636820776F756C6420

68617665206265656E206D792066697273742063686F6963652E20313020

7479706573206F662070656F706C652C20616E6420616C6C20746861742E

00

Posted (edited)
Leet speak isn't quite my style, so I figured I would post it in hex.

 

Hex is easier to post than binary, which would have been my first choice. 10 types of people, and all that.

 

For PHP 5 only:

<?
$data = $StringOfHexASCII;

$dataArray = str_split($data, 2);

foreach ($dataArray as $piece)
{
   $dec = base_convert($piece, 16, 10);
   print chr($dec);
}

?>

I'm just posting the output of that code where $StringOfHexASCII is his post (without the newlines interrupting the hex string.)

Edited by Kilo
Posted

127145154154054040154145164163040163145145040167150157040143

141156040144145143157144145040164150151163040164150145156056

040050111164047163040157143164141154040142171040164150145040

167141171051015012015012117143164141154040151163040162141164

150145162040151156164145162145163164151156147054040156157164

040165163145144040141156171155157162145054040142165164040151

164040167141163040143157155155157156040157156040157154144040

141162143151164145143164165162145163040164150141164040150141

144040167157162144040154145156147164150163040164150141164040

167145162145040141040155165154164151160154145040157146040063

040050071040146157162040145170141155160154145051056040

Posted
Well, lets see who can decode this then. (It's octal by the way)

 

Octal is rather interesting, not used anymore, but it was common on old arcitectures that had word lengths that were a multiple of 3 (9 for example).

 

Agh, I was a really big idiot and forgot that octal ASCII is 3-digits per character...so I initially gave up after having my computer beep at attempting to decode 2-digit octal into decimal ASCII, which anyone could tell won't translate into typable characters just by the first pair being "12." I'm am teh dumb.

 

(same code, except change the second parameter of str_split to 3 and the second parameter of base_convert to dirol.gif

Posted

52, 72, 73, 83, 0, 73, 83, 0, 65, 0, 82, 69, mega_shok.gif, 76, 65, 67, 69, 77,

69, 78, 84, 0, 67, 89, mega_shok.gif, 72, 69, 82, 14, 0, 41, 0, 68, 79, 85, 66,

84, 0, 84, 72, 65, 84, 0, 73, 84, 7, 76, 76, 0, 66, 69, 0, 67, 82,

65, 67, 75, 69, 68, 0, 81, 85, 73, 67, 75, 76, 89, 12, 0, 66, 85,

84, 0, 41, 7, 68, 0, 76, 73, 75, 69, 0, 84, 79, 0, 66, 69, 0, 65,

77, 65, 90, 69, 68, 14, 0, 0, 35, 79, 78, 71, 82, 65, 84, 83, 0, 84,

79, 0, 33, 82, 78, 75, 0, 70, 79, 82, 0, 68, 69, 67, 82, 89, mega_shok.gif, 84,

73, 78, 71, 0, 77, 89, 0, 0, mega_shok.gif, 82, 69, 86, 73, 79, 85, 83, 0, 79,

78, 69, 83, 12, 0, 84, 72, 79, 85, 71, 72, 14

Posted (edited)
This is a replacement cypher. I doubt that it'll be cracked quickly, but I'd like to be amazed.  Congrats to Arnk for decrypting my  previous ones, though.

 

Tricky, I was thinking too hard about it. It's just ASCII offset backwards by 32.

 

<?
$data = $StringOfOffsetASCII;

$dataArray = explode(', ', $data);

foreach ($dataArray as $piece)
{
  $piece += 32;
  print chr($piece);
}

?>

 

15:3c:91 ab 6b 5e a4 b2 a7 5e ab a8 b6 a8 66 b7 5e b3 b2 a8 5e a9 b3 b6 5e bd b3 b9 6b 5e 83 b6 a4 ac b2 6b 5e ac a9 5e bd b3 b9 5e b4 b0 a4 bd 5e b8 ab ac b7 5e aa a4 b1 a8 5e ac b2 5e b6 a8 ba a8 b6 b7 a8 6d

Edited by Kilo

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...

×
×
  • Create New...