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.

Ask HN: What are some great resources to build a secure website?

11 pointsby zer0sand0nesalmost 6 years ago
Worried about the security of my application.<p>Is there anything you recommend that helps one ensure that all holes are filled and the site is hacker-proof?<p>Something that basically enumerates the vulnerabilities that you have to be aware of and what they stem from. And then possibly some type of tutorials that shows you how to implement them?

3 comments

davnicwilalmost 6 years ago
For the client, there&#x27;s ScanJS [0] which is implemented as a set of eslint rules [1] if you&#x27;re using eslint.<p>It&#x27;s a good first pass which will point out the most obvious &#x2F; common security mistakes in JS in the browser. Though be warned that it will likely raise a fair few false positives. It&#x27;s probably most useful as an informational dev-time tool. I wouldn&#x27;t fail builds on it unless you want to be adding eslint-ignore comments everywhere :-)<p>[0] <a href="https:&#x2F;&#x2F;github.com&#x2F;mozilla&#x2F;scanjs" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;mozilla&#x2F;scanjs</a><p>[1] <a href="https:&#x2F;&#x2F;github.com&#x2F;mozfreddyb&#x2F;eslint-config-scanjs" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;mozfreddyb&#x2F;eslint-config-scanjs</a>
hodoroncrackalmost 6 years ago
<a href="https:&#x2F;&#x2F;cheatsheetseries.owasp.org" rel="nofollow">https:&#x2F;&#x2F;cheatsheetseries.owasp.org</a>
jklein11almost 6 years ago
Pen and paper