If you’re a sysadmin – and if you’ve got a VPS, you are – how do you learn about new security threats?
If there’s another Heartbleed or Shellshock, you’d probably hear about it just from reading forums – or in the cases of issues that big, the mainstream news. But what if it’s something a little less dire? Might still affect you adversely.
With a galaxy of bad actors out there, how do you stay on top of security threats? Particularly if security is not your day job? If you work in a big company, there’s a phalanx of security professionals with industry subscriptions and vendors who alert them. But if you’re just Joe LowEnder with a Debian VM, you’re just as vulnerable without the seven-figure budget to stay on top of threats.
To do that, you need to…
Subscribe to the Appropriate Security Mailing Lists
Distros publish security alerts on email, explaining what the issue and how to rectify the problem. You really should be subscribed to the security announcement email list for your favorite distro. Here are some handy links:
Debian: debian-security-announce There’s also debian-security, which is discussion-oriented but sometimes is a little big ahead of formal announcements.
Ubuntu: ubuntu-security-announce
Alma: alma-security
Rocky: rocky-announce
Bonus Tip: Turn on Automatic Updates
This isn’t really “putting security on easy mode” as some people think. Security is something you should always be thinking about and there is no way to just wash your hands of it. But you can improve your posture by always applying the most recent updates. You can get them as soon as they’re published by enabling automatic updates:
Distros That Use apt (Debian, Ubuntu)
apt install unattended-upgrades dpkg-reconfigure unattended-upgrades (and say Yes)
Distros That Use dnf (Alma, Rocky)
dnf install -y dnf-automatic Edit /etc/dnf/automatic.conf and make sure apply_updates = yes systemctl enable --now dnf-automatic.timer
Leave a Reply