All Articles

Dive into articles, tutorials and expert insights covering modern development, architecture, design and infrastructure.

DDoS Attacks Explained: Common Forms and How to Protect Against Them

July 17, 2026

by Jesse Schokker

DDoS Attacks Explained: Common Forms and How to Protect Against Them

DDoS attacks come in three broad families: volumetric floods that saturate your pipe, protocol attacks that exhaust connection state, and application-layer floods that look like legitimate traffic. Each one exhausts a different resource, so each one needs a different defence, and no single layer stops all three. This guide maps the common attack forms to the resource they target and the mitigation that actually works against them, explains what an on-host firewall can and cannot stop, and ends with a practical incident-response runbook for when your server is under fire.

Security

Read more

Sensible Default Firewall Rules for a Linux Server

July 08, 2026

by Jesse Schokker

Sensible Default Firewall Rules for a Linux Server

A fresh Linux server ships with no firewall rules at all. Every listener you start is instantly reachable from the whole internet. The fix is a short, well-understood baseline: default-deny inbound, allow established traffic, and an explicit allow-list for the services you actually run. This guide builds that baseline in nftables rule by rule, explains the parts everyone gets wrong (ICMP and IPv6), shows the same policy in ufw and firewalld, and covers how not to lock yourself out, plus the Docker port-publishing trap.

Security

Read more

iptables vs nftables: What Changed and How to Migrate

July 22, 2026

by Jesse Schokker

iptables vs nftables: What Changed and How to Migrate

If your server runs a current Debian, Ubuntu, or RHEL-family distro, your "iptables" rules are almost certainly already executing inside nftables. The iptables command has been a compatibility shim since 2019. The real question isn't which one wins; it's whether to keep writing rules in a legacy syntax on top of the new engine. This guide covers what actually changed architecturally, a side-by-side syntax comparison, what the honest performance data says, and a migration path that won't break Docker or lock you out.

Security

Read more