Community
Articles
Topics
Q&A
Learn
Course
Programming Dictionary
Tools Library
Development tools
AI Tools
Website Source Code
PHP Libraries
JS special effects
Website Materials
Extension plug-ins
Leisure
Game Download
Game Tutorials
English
简体中文
English
繁体中文
日本語
한국어
Melayu
Français
Deutsch
Login
singup
javascript - 如何写一个安全性高的,登录和记住密码的功能?
PHP中文网
2017-04-10 15:28:41
0
3
702
如何写一个安全性高的,登录和记住密码的功能?
3
0
0
PHP中文网
认证高级PHP讲师
reply all
(3)
I'll reply
Close
巴扎黑
2017-04-10 15:30:41
3 floor
登录
系统设置一个固定的盐值,该盐值最好足够复杂,如:1qaz2wsx3edc4rfv!@#$%^&qqtrtRTWDFHAJBFHAGFUAHKJFHAJHFJHAJWRFA
用户注册、修改密码时,将用户的原始密码与我们的固定盐值拼接,然后做md5运算。
传递至后端,保存进数据库(数据库中保存的密码是用户的原始密码拼接固定盐值后,md5运算后的结果)。
登录时,将用户的原始密码与我们的固定盐值进行拼接,然后做md5运算,运算后的结果再拼接上我们的随机码,再次md5运算,然后提交。
后端接收到登录请求后,将从数据库中查询出的密码与session中的随机码拼接后,md5运算,然后与前端传递的结果进行比较。
觉得不安全就https方便点
Like
+0
Add Reply
关闭回复
PHP中文网
reply
刘奇
2017-04-10 15:30:41
2 floor
在楼上的基础上,盐最好动态的
Like
+0
Add Reply
关闭回复
PHP中文网
reply
左手右手慢动作
2017-04-10 15:30:41
1 floor
用cookie,或者localstorage。
Like
+0
Add Reply
关闭回复
PHP中文网
reply
Popular Topics
More>
CakePHP Tutorial
Laravel Tutorial
PHP Tutorial
Java Tutorial
Popular Articles
Which platform trading app can RAY coins be bought and sold on? Top 10 best RAY currency trading platforms
The relationship between bsc and erc
Lego Fortnite Odyssey: How To Get Wheat And Flour
How Can I Efficiently Identify Rows Where a Column Value Changes in SQL?
How Can I Call Child Methods from Parent Components in React?
Popular Tutorials
More>
Related Tutorials
Popular Recommendations
Latest courses
The latest ThinkPHP 5.1 world premiere video tutorial (60 days to become a PHP expert online training course)
1426069
PHP introductory tutorial one: Learn PHP in one week
4273732
JAVA Beginner's Video Tutorial
2563573
The latest ThinkPHP 5.1 world premiere video tutorial (60 days to become a PHP expert online training course)
1426069
JAVA Beginner's Video Tutorial
2563573
Little Turtle's zero-based introduction to learning Python video tutorial
508976
Quick introduction to web front-end development
216112
Master PS video tutorials from scratch
895964
[Web front-end] Node.js quick start
7969
Complete collection of foreign web development full-stack courses
6336
Go language practical GraphQL
5230
550W fan master learns JavaScript from scratch step by step
723
Python master Mosh, a beginner with zero basic knowledge can get started in 6 hours
26431
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
[form button] jQuery enterprise message form contact code
[Player special effects] HTML5 MP3 music box playback effects
[Menu navigation] HTML5 cool particle animation navigation menu special effects
[form button] jQuery visual form drag and drop editing code
[Player special effects] VUE.JS imitation Kugou music player code
[html5 special effects] Classic html5 pushing box game
[Picture special effects] jQuery scrolling to add or reduce image effects
[Photo album effects] CSS3 personal album cover hover zoom effect
[Bootstrap template] Organic fruit and vegetable supplier web template Bootstrap5
[backend template] Bootstrap3 multifunctional data information background management responsive web page template-Novus
[Bootstrap template] Real estate resource service platform web page template Bootstrap5
[Bootstrap template] Simple resume information web template Bootstrap4
[Bootstrap template] bootstrap responsive widescreen book education website template-DREAMLIFE
[backend template] MAC style responsive blue enterprise CMS background management system template
[backend template] Responsive gradient atmosphere background management system website template-usinessbox
[Bootstrap template] Responsive vegetable and fruit store website template-Organio
[PNG material] Cute summer elements vector material (EPS PNG)
[PNG material] Four red 2023 graduation badges vector material (AI EPS PNG)
[banner picture] Singing bird and cart filled with flowers design spring banner vector material (AI EPS)
[PNG material] Golden graduation cap vector material (EPS PNG)
[PNG material] Black and white style mountain icon vector material (EPS PNG)
[PNG material] Superhero silhouette vector material (EPS PNG) with different color cloaks and different poses
[banner picture] Flat style Arbor Day banner vector material (AI+EPS)
[PNG material] Nine comic-style exploding chat bubbles vector material (EPS+PNG)
[Front-end template] Home Decor Cleaning and Repair Service Company Website Template
[Front-end template] Fresh color personal resume guide page template
[Front-end template] Designer Creative Job Resume Web Template
[Front-end template] Modern engineering construction company website template
[Front-end template] Responsive HTML5 template for educational service institutions
[Front-end template] Online e-book store mall website template
[Front-end template] IT technology solves Internet company website template
[Front-end template] Purple style foreign exchange trading service website template
登录
觉得不安全就https方便点
在楼上的基础上,盐最好动态的
用cookie,或者localstorage。