md5 decode

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    md5 decode

    Please how to decode md5, i use md5 to insert member pass to database, how can get the original password back from db.
    have connected with http://adexchat.com ?
    Fun up with
    http://forum.adexchat.com

    #2
    It can't. md5 is one way hash.
    <!DOCTYPE html PUBLIC "-//WAPFORUM.RS

    Comment


      #3
      google is the best md5 decoder tool :P but that wont decode everything lol

      Added after 3 minutes:

      i guess you could ask Ronald Rivest for the algorithm to decode it rofl
      Last edited by something else; 16.04.11, 19:19.

      Comment


        #4
        Thats probably why people using salt or hashing hashed hash.
        <!DOCTYPE html PUBLIC "-//WAPFORUM.RS

        Comment


          #5
          yeah its surprising that no one has figured out md5 algorithm as is 20 years old now
          Last edited by something else; 16.04.11, 19:37.

          Comment


            #6
            Ok i am coding a new script, i want if member 4get there password, i want to send back their original pass to his/her email, any idia?
            have connected with http://adexchat.com ?
            Fun up with
            http://forum.adexchat.com

            Comment


              #7
              Replace it with a new pass :P

              Comment


                #8
                I dont like that method, but no choice lol.
                have connected with http://adexchat.com ?
                Fun up with
                http://forum.adexchat.com

                Comment


                  #9
                  oh by the looks of things md5 has been cracked: MD5 - Wikipedia, the free encyclopedia

                  Comment


                    #10
                    Thank let me checkout
                    have connected with http://adexchat.com ?
                    Fun up with
                    http://forum.adexchat.com

                    Comment


                      #11
                      Make your own encryption , so that you can decode it back.
                      Did I help you?
                      You can help me too
                      Your donations will help me finance my studies.

                      Comment


                        #12
                        Encoded
                        PHP Code:
                        <?PHP
                         
                           $text 
                        "PHP rocks!";
                           
                        $encoded PREG_REPLACE(
                                   
                        "'(.)'e"
                                 
                        ,"dechex(ord('\\1'))"
                                 
                        ,$text
                           
                        );
                           PRINT 
                        "ENCODED: $encoded\n";
                         
                        ?>
                        ENCODED: 50485020726f636b7321

                        Decode
                        PHP Code:
                        <?PHP
                         
                           
                        PRINT "DECODED: ".PREG_REPLACE(
                               
                        "'([\S,\d]{2})'e"
                             
                        ,"chr(hexdec('\\1'))"
                             
                        ,$encoded)."\n";
                         
                        ?>
                        DECODED: PHP rocks!
                        Visit: Chat4u.mobi - The New Lay Of being a site of your dreams!
                        Visit: WapMasterz Coming Back Soon!
                        _______
                        SCRIPTS FOR SALE BY SUBZERO
                        Chat4u Script : coding-talk.com/f28/chat4u-mobi-script-only-150-a-17677/ - > Best Script for your site no other can be hacked by sql or uploaders.
                        FileShare Script : coding-talk.com/f28/file-wap-share-6596/ -> Uploader you will never regret buying yeah it mite be old now but it still seems to own others...
                        _______
                        Info & Tips
                        php.net
                        w3schools.com

                        Comment


                          #13
                          Hmm @subzero thanks, but the method suck, easy to hack
                          have connected with http://adexchat.com ?
                          Fun up with
                          http://forum.adexchat.com

                          Comment


                            #14
                            PHP Code:
                            <?php
                            // :::: encode your password :::: // 
                            function encode($string,$key) {
                                
                            $key sha1($key);
                                
                            $strLen strlen($string);
                                
                            $keyLen strlen($key);
                                for (
                            $i 0$i $strLen$i++) {
                                    
                            $ordStr ord(substr($string,$i,1));
                                    if (
                            $j == $keyLen) { $j 0; }
                                    
                            $ordKey ord(substr($key,$j,1));
                                    
                            $j++;
                                    
                            $hash .= strrev(base_convert(dechex($ordStr $ordKey),16,36));
                                }
                                return 
                            $hash;
                            }
                            // :::: Decode your password :::: // 
                            function decode($string,$key) {
                                
                            $key sha1($key);
                                
                            $strLen strlen($string);
                                
                            $keyLen strlen($key);
                                for (
                            $i 0$i $strLen$i+=2) {
                                    
                            $ordStr hexdec(base_convert(strrev(substr($string,$i,2)),36,16));
                                    if (
                            $j == $keyLen) { $j 0; }
                                    
                            $ordKey ord(substr($key,$j,1));
                                    
                            $j++;
                                    
                            $hash .= chr($ordStr $ordKey);
                                }
                                return 
                            $hash;
                            }
                            ?>

                            How to use.

                            Encode:
                            echo encode("Please Encode Me!","Your Hidden Password To EnCode!");

                            Result:
                            p3e4e4241674d2r4m4i5o464a4f2p3k5c2


                            Decode:
                            echo decode("p3e4e4241674d2r4m4i5o464a4f2p3k5c2","Your Hidden Password To EnCode!");

                            Result:
                            Please Encode Me!

                            Now this is Hard to Crack or better off not building a site
                            Visit: Chat4u.mobi - The New Lay Of being a site of your dreams!
                            Visit: WapMasterz Coming Back Soon!
                            _______
                            SCRIPTS FOR SALE BY SUBZERO
                            Chat4u Script : coding-talk.com/f28/chat4u-mobi-script-only-150-a-17677/ - > Best Script for your site no other can be hacked by sql or uploaders.
                            FileShare Script : coding-talk.com/f28/file-wap-share-6596/ -> Uploader you will never regret buying yeah it mite be old now but it still seems to own others...
                            _______
                            Info & Tips
                            php.net
                            w3schools.com

                            Comment

                            Working...
                            X