How does Microsoft SQL Server encrypt passwords? Undisclosed encryption functions

Source: Internet
Author: User
If you are interested in MSSQL user information, you may find the Master. DBO. sysxlogins stores user passwords. However, if the password field is not null, It is a bunch of binary files that cannot be understood. How is this password encrypted?
In fact, you only need to take a closer look at Master. DBO. sp_addlogin. You can see all the MSSQL Sp. Code Yes.
Let's take a look at how it works. Pay attention to this line of select @ passwd = pwdencrypt (@ passwd). After this, @ passwd will be encrypted. Let's also try it.
Declare @ clearpwd varchar (255)
Declare @ encryptedpwd varbinary (255)
Select @ clearpwd = 'test'
Select @ encryptedpwd = convert (varbinary (255), pwdencrypt (@ clearpwd ))
Select @ encryptedpwd
It looks good. It is indeed encrypted, but how can I restore it?

well, that's all. Password Encryption is one-way. You can use encrypted passwords to compare them.
continue to check the SP related to other users. You can find that there is password comparison in master. DBO. sp_password.
pwdcompare (@ old, password, (case when xstatus & 2048 = 2048 then 1 else 0 end)
ignore xstatus, which is a status mask, generally, we can use 0 directly.
declare @ clearpwd varchar (255)
declare @ encryptedpwd varbinary (255)
select @ clearpwd = 'test'
select @ encryptedpwd = convert (varbinary (255), pwdencrypt (@ clearpwd)
select pwdcompare (@ clearpwd, @ encryptedpwd, 0)
select pwdcompare ('errorpassword', @ encryptedp WD, 0)
so that we can use these two functions to encrypt our passwords. How about that?

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.