All questions
Q & A Security · September 11, 2026

What does an open port mean for security?

An open port means a service is listening on it and accepting incoming connections. Whether that’s a security risk depends on the service. Open port 80/443 (HTTP/HTTPS) on a web server: intended, not a risk. Open port 22 (SSH) exposed to the internet: risk if the SSH server accepts password auth, low risk with key-only auth. Open port 3306 (MySQL) or 5432 (PostgreSQL) exposed publicly: always a risk — databases should be behind a firewall or VPN. Scan any host with the port scanner to see what’s open. Compare against your intended service inventory; anything unexpected needs investigation.

Read the full guide
HTTP Security Headers Explained
HTTP security headers are the browser-enforced defence layer that runs before your application code. Deployed correctly, they eliminate whole classes of attacks — even when the underlying application has bugs. Deployed incorrectly, they silently break the site.