Ask HN: How to secure a website?
1–5 of 5 posts
Re: Ask HN: How to secure a website?
#2It's better to ask the same question on a forum or StackOverflow as most frameworks have countermeasures or configuration options included (salting password, inspecting HTTP headers, preventing SQL injection).
Re: Ask HN: How to secure a website?
#3setup a fail2ban to update iptable rules to detect repeated hack attempts and ban their ip address.
Re: Ask HN: How to secure a website?
#4Re: Ask HN: How to secure a website?
#5-integrity -availability and -confidentiality
Of your server and app. For integrity, look for file integrity monitors (OSSEC is a good open source project that does that).
For availability: load balancers, ddos protection, auto scaling are all things to look for. Products like CloudFlare and Sucuri can do it in the cloud for you automatically.
For confidentiality, try isolating your server, setting up firewalls to deny all by default, restricting access, keeping it updated, etc.
thanks,