javascript - Where should the password account of the webmaster of a personal blog be kept safely?
滿天的星座
滿天的星座 2017-05-19 10:47:13
0
3
540

Where should personal information be placed in the project in a personal blog?

滿天的星座
滿天的星座

reply all(3)
为情所困

Only relatively safe. Nowhere is it absolutely safe.

Basically, everyone is stored in the database, and the passwords are encrypted. The encryption here is usually a custom algorithm, so even if he gets the encrypted password, he cannot know the original password.

The above is the standard configuration, which means everyone will do it. The security of a website does not mean that it cannot be cracked, nor does it mean that the code has loopholes. So don’t worry about this

phpcn_u1582

As a blog system, account and password information must be stored in the database. Specifically how to store it safely in the database, you can consider adding salt + hash before storing it. In this way, only the user (yourself) knows the password, and others cannot obtain your password even if they drag the database.

As a user, it is definitely safer to keep your account password in your own head.

滿天的星座

In my head, how about 1password5

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template