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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

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

11 点作者 zer0sand0nes将近 6 年前
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 条评论

davnicwil将近 6 年前
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>
hodoroncrack将近 6 年前
<a href="https:&#x2F;&#x2F;cheatsheetseries.owasp.org" rel="nofollow">https:&#x2F;&#x2F;cheatsheetseries.owasp.org</a>
jklein11将近 6 年前
Pen and paper