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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: How do you take care of security risks at your startup?

5 点作者 roshansingh大约 10 年前
I work in a startup. We have very limited knowledge of security. The only thing we have done to ensure safety of our infrastructure is to install firewall. We are planning to install openvpn and block ssh on all servers on public interface. We currently use key based ssh.<p>We have idea about XSS and SQL injection, so I think we can handle that.<p>How do you manage security at your startup? What are the best practices?<p>I know that security in itself is very big issue. But till we can hire a security guy, we need something to prevent naive attacks.

3 条评论

dsacco大约 10 年前
Hey there, my name is Dylan. I work on the Application Security team at Accuvant LABS. We&#x27;re one of the largest infosec firms, and we serve tech companies and the Fortune 500.<p>If you&#x27;d like advice about this, I&#x27;d be happy to give you (free) help with what you need to get started and ensure you&#x27;re not vulnerable.<p>I wrote a basic but helpful checklist for startups to follow here: <a href="http:&#x2F;&#x2F;breakingbits.net&#x2F;2015&#x2F;02&#x2F;28&#x2F;security-for-startups&#x2F;" rel="nofollow">http:&#x2F;&#x2F;breakingbits.net&#x2F;2015&#x2F;02&#x2F;28&#x2F;security-for-startups&#x2F;</a><p>The broad strokes are ensuring your developers understand the most common security mistakes, how to avoid them in your tech stack and how to follow best practices in the SDLC to minimize the likelihood and impact of security flaws.<p>If you&#x27;d like any more help, feel free to reach out to me at dylan@breakingbits.net.
评论 #9432218 未加载
hawe大约 10 年前
Some ideas for a general strategy: * Check TLS&#x2F;SSL <a href="https:&#x2F;&#x2F;www.ssllabs.com&#x2F;ssltest&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.ssllabs.com&#x2F;ssltest&#x2F;</a> * Use Https, HSTS * Have a security response page if someone found a problem * What to do if your application was compromised, be prepared for the worst * Check and update your software regularly * Review changes in your software regularly if it impacts your overall security strategy * Keep a security checklist in your codebase * Do your own code audits, just read it again after a few days and ask the right questions * Remove all credentials from your codebase * Read about the &quot;new&quot; security headers here: <a href="https:&#x2F;&#x2F;github.com&#x2F;twitter&#x2F;secureheaders" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;twitter&#x2F;secureheaders</a> * Know what kind of&#x2F;how many requests your API&#x2F;web app gets, maybe throttle or block some
BorisMelnik大约 10 年前
Some best practices:<p>1. keep all software on local machines up to date, and make sure you run virus scanners. many of today&#x27;s malware will infect your machine so that it can do things like grab your Filezilla XML for a larger botnet.<p>2. keep all software on remote machines up to date, and use malware scanners. I can&#x27;t tell you how many times people get hacked from having outdated WordPress plugins etc.<p>3. if you are small, services like sucuri.net are great for basic malware scanning and removal.<p>4. have some sort of HR policy regarding passwords and security. things like if someone gets fired, removing their email address and changing their passwords.<p>that&#x27;s what I&#x27;ve got off the top of my head!
评论 #9432220 未加载