TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

How To Secure Your Website [pdf]

50 pointsby matsuuover 12 years ago

3 comments

kirinanover 12 years ago
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 未加载
matsuuover 12 years ago
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>
barakstoutover 12 years ago
Thanks!