MD5 work on SQL 2000?

Results 1 to 9 of 9
  1. #1
    Enthusiast Member-Hacking is offline
    MemberRank
    Jan 2010 Join Date
    26Posts

    idea MD5 work on SQL 2000?

    I found working on SQL 2005 http://forum.ragezone.com/f565/share...swords-379156/ , whether MD5 can work on SQL 2000?? Can help me? And give the steps for SQL 2000.


  2. #2
    Valued Member sick&tired is offline
    MemberRank
    Jan 2009 Join Date
    141Posts

    Re: MD5 work on SQL 2000?

    Yes its work as charm and its all there. Tyfix explain perfectly. Read it over and over again. That's what we all here do.

  3. #3
    Enthusiast Member-Hacking is offline
    MemberRank
    Jan 2010 Join Date
    26Posts

    Re: MD5 work on SQL 2000?

    Quote Originally Posted by sick&tired View Post
    Yes its work as charm and its all there. Tyfix explain perfectly. Read it over and over again. That's what we all here do.
    friend, step SQL 2005 can be used and work on SQL 2000?

  4. #4
    Account Upgraded | Title Enabled! equlibrium is offline
    MemberRank
    Dec 2008 Join Date
    Tallinn, EstoniLocation
    379Posts

    Re: MD5 work on SQL 2000?

    Her is Guide how get work MD5 in sql 2000 http://forum.ragezone.com/f565/share...swords-379156/

  5. #5
    Valued Member sick&tired is offline
    MemberRank
    Jan 2009 Join Date
    141Posts

    Re: MD5 work on SQL 2000?

    Quote Originally Posted by sick&tired View Post
    Yes its work as charm and its all there. Tyfix explain perfectly. Read it over and over again. That's what we all here do.
    Yes it is.
    Last edited by sick&tired; 07-02-13 at 01:37 PM.

  6. #6
    Enthusiast Member-Hacking is offline
    MemberRank
    Jan 2010 Join Date
    26Posts

    Re: MD5 work on SQL 2000?

    Quote Originally Posted by Tyfix View Post
    Here is a solution to add MD5 encryption to passwords in database of all user accounts.

    It does require a bit of knowledge of MSSQL

    First off you'll need a plugin dll to MSSQL which i have attached to this post, put it somewhere on the server (like c:\windows\system32 would be a good choice)

    Fire up MSSQL Manager and go to Master database (in MSSQL 2005 its under system databases) go to programmability->Extended Stored Procedures and rightclick on it, select New Extended Stored Procedure. A window will popup asking for a name and a dll location.

    Name: xp_md5
    DLL: c:\windows\system32\xp_md5.dll (or wherever you put the dll)

    Click ok. You should now see your new extended stored procedure called dbo.xp_md5 under the master database.

    Close the master database and open your RYL user database (youxiuser) click on New Query up in the top of the management tools and paste this into the new box that popup.

    -- Snip --

    CREATE FUNCTION [dbo].[fn_md5]
    (
    @data AS TEXT
    )
    RETURNS VARCHAR(30) AS

    BEGIN
    DECLARE @hash VARCHAR(32)
    EXEC master.dbo.xp_md5 @data, -1, @hash OUTPUT
    RETURN @hash
    END

    -- End Snip --
    Where are location New Query in SQL 2000?

  7. #7
    Valued Member sick&tired is offline
    MemberRank
    Jan 2009 Join Date
    141Posts

    Re: MD5 work on SQL 2000?

    screenhunter_02-feb.-09-10.40.jpg

  8. #8
    Enthusiast Member-Hacking is offline
    MemberRank
    Jan 2010 Join Date
    26Posts

    Re: MD5 work on SQL 2000?

    Ok thanks sick&tired and equlibrium, I succeeded and SQL 2000 work. TQ

  9. #9
    Valued Member sick&tired is offline
    MemberRank
    Jan 2009 Join Date
    141Posts

    Re: MD5 work on SQL 2000?

    Your welcome.



Advertisement