Converting passwords (Md5 -> Normal)

Results 1 to 3 of 3
  1. #1
    Account Upgraded | Title Enabled! Maddox is offline
    MemberRank
    Feb 2014 Join Date
    938Posts

    wink Converting passwords (Md5 -> Normal)

    Hello any body know how to Converting passwords (Md5 -> Normal)?

    i found this query but this query only convert MD5 --> Normal

    DECLARE @Hash binary(16),
    @myvarpass varchar(10),
    @accid varchar(10);
    DECLARE mytest SCROLL CURSOR FOR SELECT memb___id,memb__pwd FROM MEMB_INFO
    OPEN mytest
    FETCH NEXT FROM mytest INTO @accid, @myvarpass;
    while (@@fetch_status = 0) BEGIN
    EXEC master..XP_MD5_EncodeKeyVal @myvarpass, @accid, @Hash OUT;
    UPDATE MEMB_INFO SET temphash = @Hash WHERE memb___id = @accid;
    FETCH NEXT FROM mytest INTO @accid, @myvarpass;
    END
    CLOSE mytest
    DEALLOCATE mytest
    what i need is Converting passwords (Md5 -> Normal)

    thanks.


  2. #2
    Alpha Member 2009x2014 is offline
    MemberRank
    Dec 2009 Join Date
    2,765Posts

    Re: Converting passwords (Md5 -> Normal)

    You can't convert MD5 WZ to normal, if that would be so easy, then there would be no reason to keep it enabled.

    You can only try to break passwords, but every account will be different part to start with so may take months/years/or decades, if password is really long.

    Simply forget abt it.

  3. #3
    Account Upgraded | Title Enabled! Maddox is offline
    MemberRank
    Feb 2014 Join Date
    938Posts

    Re: Converting passwords (Md5 -> Normal)

    Quote Originally Posted by 4FUNer View Post
    You can't convert MD5 WZ to normal, if that would be so easy, then there would be no reason to keep it enabled.

    You can only try to break passwords, but every account will be different part to start with so may take months/years/or decades, if password is really long.

    Simply forget abt it.
    ok now i know the fact that if your database/table are in md5 it cant be back to normal thanks for the info Idol 4FUNer, you always help. God Bless.



Advertisement