[General] MD5: How would you retrive..

Results 1 to 9 of 9
  1. #1
    Sorcerer Supreme Hidden is offline
    Member +Rank
    Apr 2008 Join Date
    .Location
    367Posts

    [General] MD5: How would you retrive..

    I'm just wondering if it is possible to retrive the password if it is md5'ed (like someone forgot their password and i want to send it to them through email automatically but not md5'ed)
    thanks


  2. #2
    Grand Master Mazo is offline
    Grand MasterRank
    Apr 2003 Join Date
    Not in this "out" you speak ofLocation
    2,021Posts

    Re: How would you retrive..

    No. You cannot reverse md5 encryption as far as I know

  3. #3
    Sorcerer Supreme Hidden is offline
    Member +Rank
    Apr 2008 Join Date
    .Location
    367Posts

    Re: How would you retrive..

    Quote Originally Posted by Mazo View Post
    No. You cannot reverse md5 encryption as far as I know
    hmm so maybe i should not md5 my passwords?

  4. #4
    Sorcerer Supreme admLoki is offline
    Member +Rank
    Apr 2005 Join Date
    www.codenetwork.ruLocation
    345Posts

    Re: How would you retrive..

    Quote Originally Posted by Hidden View Post
    hmm so maybe i should not md5 my passwords?
    This is unsafe. You can try to decode md5 hash but only god knows how much time it will take.

  5. #5
    Grand Master Daevius is offline
    Grand MasterRank
    Jun 2007 Join Date
    NetherlandsLocation
    3,252Posts

    Re: [General] MD5: How would you retrive..

    MD5 is made so it's not reversible...this to ensure that whenever someone has the hash, it cannot be decrypted. That's the whole idea...it can be bruteforced though.

    When someone forgot his password, you encrypt a new password, and send it to the user, which can then change it himself to anything he likes (after he logged in for instance).

  6. #6
    Grand Master Intelext is offline
    Grand MasterRank
    Mar 2007 Join Date
    EuropeLocation
    1,228Posts

    Re: [General] MD5: How would you retrive..

    It can be done. You just need to crack it with dictionary or random combination's. Dictionary works the best if he has lame password.

  7. #7
    Elite Member andrew951 is offline
    Member +Rank
    Dec 2006 Join Date
    207Posts

    Re: [General] MD5: How would you retrive..

    i use md5 for my site as well. for forgetting my password, i had them type their email address, which will have an activation link with a $_GET or something. then i had a small form that would change their pw.

  8. #8
    Grand Master evill33t is offline
    Grand MasterRank
    Sep 2005 Join Date
    /int/Location
    2,603Posts

    Re: [General] MD5: How would you retrive..

    without salt its revertable there are big databases out there
    http://gdataonline.com/seekhash.php
    http://www.xmd5.org/index_en.htm
    etc..

  9. #9
    Elite Member andrew951 is offline
    Member +Rank
    Dec 2006 Join Date
    207Posts

    Re: [General] MD5: How would you retrive..

    but you cant just decode every password that people forgot. besides, rainbow tables are dictionary words that have been encoded anyways. lol.

    you can just not md5 them, but it would be a HUGE security flaw. so i support my idea above. =]



Advertisement