TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

[S5 Slides] Security in Web Applications

16 点作者 costan超过 15 年前

3 条评论

costan超过 15 年前
Zipped source code: <a href="http://6.470.scripts.mit.edu/lectures/security/security_in_webapps_slides.zip" rel="nofollow">http://6.470.scripts.mit.edu/lectures/security/security_in_w...</a><p>Live source code: <a href="http://github.com/costan/security_in_webapps_slides" rel="nofollow">http://github.com/costan/security_in_webapps_slides</a>
评论 #1046356 未加载
aidenn0超过 15 年前
1) Don't use anything fast (like md5) to hash your passwords. Use many-rounds of md5 or sha-1, or use something specifically designed for password hashing like eksblowfish<p>2) Don't escape your SQL, use parameterized queries
brlewis超过 15 年前
How good is md5 plus a 4-character (digits, actually, in the slides) salt?