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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

How To Secure Your Website [pdf]

50 点作者 matsuu超过 12 年前

3 条评论

kirinan超过 12 年前
My favorite resource for this is : <a href="https://www.owasp.org/index.php/Main_Page" rel="nofollow">https://www.owasp.org/index.php/Main_Page</a><p>It has the major security flaws, how they secure them, and how the attack is done. However, I think the best way to secure a website is to keep one thing in mind when programming: never trust anything from the client. Thats input, cookies, anything that can be tampered with on the client side (browser in the case of the web). If you do accept anything without sanitizing or having some sort of check, then you will be hacked and something will be stolen (whether or not it is important, that depends on the domain you are working on).
评论 #4980435 未加载
matsuu超过 12 年前
See also<p>How To Use SQL Calls to Secure Your Web Site <a href="http://www.ipa.go.jp/security/vuln/documents/website_security_sql_en.pdf" rel="nofollow">http://www.ipa.go.jp/security/vuln/documents/website_securit...</a><p>Official Site <a href="http://www.ipa.go.jp/security/english/third.html" rel="nofollow">http://www.ipa.go.jp/security/english/third.html</a>
barakstout超过 12 年前
Thanks!