d.shankar Posted October 18, 2007 Share Posted October 18, 2007 http://www.wondermill.com/developer.html Can someone tell me what encryption they have used ? This is the encrypted link http://847C7B71727F7A7679793B707C7A3C747C737C7F76813B75817A79 Tried Base64 .. etc in PHP .. Any idea ? Quote Link to comment Share on other sites More sharing options...
MadTechie Posted October 18, 2007 Share Posted October 18, 2007 LOL Quote Link to comment Share on other sites More sharing options...
d.shankar Posted October 18, 2007 Author Share Posted October 18, 2007 Heheh ;D What made you laugh !!! Quote Link to comment Share on other sites More sharing options...
SirChick Posted October 18, 2007 Share Posted October 18, 2007 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! Quote Link to comment Share on other sites More sharing options...
d.shankar Posted October 18, 2007 Author Share Posted October 18, 2007 guys please.. me too cant resist laughter. !!! my friend asked me abt it so i was trying to help him.. hehe Quote Link to comment Share on other sites More sharing options...
BlueSkyIS Posted October 18, 2007 Share Posted October 18, 2007 http://www.wondermill.com/goforit.html Quote Link to comment Share on other sites More sharing options...
d.shankar Posted October 18, 2007 Author Share Posted October 18, 2007 Wooooooooooooooooooooooooooooooooow ! BlueSky gr8 man ! how u did that in a wink ? Quote Link to comment Share on other sites More sharing options...
BlueSkyIS Posted October 18, 2007 Share Posted October 18, 2007 simple substitution cypher. the domain was most likely in there, so that was where i started. Quote Link to comment Share on other sites More sharing options...
MadTechie Posted October 18, 2007 Share Posted October 18, 2007 Awww, missed the deadline http://www.wondermill.com/code_ninja.html ~Sighs~ watches the flood of email from people who couldn't work it out... like cheating on your math's test! Quote Link to comment Share on other sites More sharing options...
d.shankar Posted October 18, 2007 Author Share Posted October 18, 2007 simple substitution cypher. the domain was most likely in there, so that was where i started. You mea CAESAR Cipher ?? Doing 26 Rotations with the string ? i.e substituting a with b , b with c etc.... ?? Quote Link to comment Share on other sites More sharing options...
BlueSkyIS Posted October 18, 2007 Share Posted October 18, 2007 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. Quote Link to comment Share on other sites More sharing options...
d.shankar Posted October 18, 2007 Author Share Posted October 18, 2007 Gr8 work blueskyis ! Quote Link to comment Share on other sites More sharing options...
Wes1890 Posted October 18, 2007 Share Posted October 18, 2007 $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 Quote Link to comment Share on other sites More sharing options...
d.shankar Posted October 18, 2007 Author Share Posted October 18, 2007 Good Shot Man Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.