Jump to content

[SOLVED] Any Idea ?


d.shankar

Recommended Posts

Wondermill is an equal opportunity employer, and does not discriminate on the basis of race, national or ethnic origin, religion, age, gender, sexual orientation, marital status, family status or disability.  (Except jerks. Jerks need not apply.)

 

LOL i was already laughing then i read that bit and can't stop laughing now!

Link to comment
https://forums.phpfreaks.com/topic/73783-solved-any-idea/#findComment-372308
Share on other sites

i don't know much about cyphers or whatnot. first i counted the characters to see if it was an even number. it was, so i assumed it was a substitution of each character using 2 numbers/letters. then i figured the domain was in there, so i looked for 2 characters following each other for the two L's in wondermill.com. i found those in 7979. then it was easy as the rest fell into place.

Link to comment
https://forums.phpfreaks.com/topic/73783-solved-any-idea/#findComment-372325
Share on other sites

$decode = array (

"A" => "6E",

"B" => "6F",

"C" => "70",

"D" => "71",

"E" => "72",

"F" => "73",

"G" => "74",

"H" => "75",

"I" => "76",

"J" => "77",

"K" => "78",

"L" => "79",

"M" => "7A",

"N" => "7B",

"O" => "7C",

"P" => "7D",

"Q" => "7E",

"R" => "7F",

"S" => "80",

"T" => "81",

"U" => "82",

"V" => "83",

"W" => "84",

"X" => "85",

"Y" => "86",

"Z" => "87",

 

"." => "3B",

"/" => "3C"

);

 

:)

thats all i could figure... keep it for future simple decodes

Link to comment
https://forums.phpfreaks.com/topic/73783-solved-any-idea/#findComment-372343
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.