Skip to content
daniel@cosenza:~/blog

tag

#security

27 posts

Tech HistoryDeep Dive July 23, 2026 2 min read

The Morris Worm: The Internet's First Real Security Wreck

A graduate student's experiment to measure the internet's size instead knocked out an estimated 10% of it in a single night. The Morris Worm produced the first felony conviction under US computer crime law.

#deep-dive#security#morris-worm
Read more
LinuxHow-To July 11, 2026 2 min read

How to Set Up Automatic Security Updates on Linux

A complete walkthrough configuring unattended-upgrades (Debian/Ubuntu) and dnf-automatic (RHEL/Fedora) to apply security patches automatically, with sane limits on what gets updated unattended.

#howto#security#updates
Read more
FreeBSDHow-To July 6, 2026 2 min read

How to Harden Services on FreeBSD with Capsicum

A practical walkthrough of Capsicum's capability mode — how to check if a program supports it, and how sandboxed services actually differ from ordinary ones at the syscall level.

#howto#capsicum#security
Read more
LinuxFix July 6, 2026 2 min read

Fixing SELinux Denials Blocking a Legitimate Service

A service that works fine with SELinux disabled fails mysteriously with it enforcing. Here's how to read audit.log, generate a targeted policy module, and fix the actual denial instead of disabling protection.

#fix#selinux#security
Read more
SRE & DevOpsHow-To April 29, 2026 3 min read

How to Set Up Kubernetes NetworkPolicies

A complete walkthrough restricting which pods can talk to which — Kubernetes allows all pod-to-pod traffic by default, and NetworkPolicies are how you actually change that.

#howto#networkpolicy#kubernetes
Read more
WindowsHow-To April 7, 2026 3 min read

How to Configure Remote Desktop Securely on Windows

A complete walkthrough enabling Remote Desktop the right way — Network Level Authentication, a non-default port, and firewall scoping — rather than exposing RDP openly to the internet.

#howto#remote-desktop#rdp
Read more
macOSFix March 24, 2026 2 min read

Fixing 'App Is Damaged and Can't Be Opened' on macOS

The app isn't actually damaged in most cases — this is Gatekeeper's quarantine flag reacting to how the file was downloaded, and there's a legitimate, safe way to override it for software you trust.

#fix#gatekeeper#security
Read more
SRE & DevOpsDeep Dive February 22, 2026 4 min read

Building Minimal, Secure Container Images

How multi-stage builds, distroless base images, and layer discipline combine to produce smaller, more secure container images without sacrificing developer ergonomics.

#containers#docker#security
Read more