惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

罗磊的独立博客
L
LangChain Blog
aimingoo的专栏
aimingoo的专栏
IT之家
IT之家
B
Blog
博客园_首页
博客园 - 司徒正美
有赞技术团队
有赞技术团队
博客园 - 聂微东
I
InfoQ
美团技术团队
GbyAI
GbyAI
阮一峰的网络日志
阮一峰的网络日志
H
Help Net Security
大猫的无限游戏
大猫的无限游戏
MyScale Blog
MyScale Blog
WordPress大学
WordPress大学
The GitHub Blog
The GitHub Blog
A
About on SuperTechFans
人人都是产品经理
人人都是产品经理
Microsoft Azure Blog
Microsoft Azure Blog
Engineering at Meta
Engineering at Meta
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
The Cloudflare Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Your EOL Dependencies Are a Compliance Problem — Not Just...
endoflife-ai · 2026-05-21 · via DEV Community

Most developers know about EOL software the way they know about eating vegetables. Sure, you should stay current. But the real reason to act isn't hygiene — it's that EOL software creates compliance findings your company can't easily explain away.

If your company is pursuing SOC 2 Type II, renewing a PCI DSS certification, or handling healthcare data under HIPAA, an auditor is going to inventory your software stack. When they find components that are past vendor end-of-life — and they will, because most stacks have at least one — the question becomes: does this team know about it, and are they managing it?

The answer "we know, here's our plan" is manageable. The answer "we weren't aware" is a finding.


What Auditors Actually Look For

Security auditors doing SOC 2 or PCI reviews don't just run a vulnerability scanner and read the output. They ask for your software inventory. They cross-reference versions against published EOL dates. They check whether you have a process for tracking this over time.

Under SOC 2's Trust Services Criteria, the relevant control is CC7.1 — your ability to detect threats to system components. If you're running Node.js 16 (EOL September 2023) and you don't have a documented reason why and a plan to migrate, that's a gap in CC7.1.

Under PCI DSS 4.0, Requirement 6.3.3 mandates that all components have applicable security patches installed. For EOL software, there are no patches. That means you need a Targeted Risk Analysis — a formal document explaining the risk, your compensating controls, and your remediation timeline.

The thing that surprises most developers: Compliance auditors aren't primarily looking for exploited vulnerabilities. They're looking for evidence that you know your risks and are managing them deliberately. A known EOL component with a documented upgrade plan is manageable. An unknown EOL component is a red flag about your security program overall.


What's Likely EOL in Your Stack Right Now

Product EOL Date EOL Risk Score™
Node.js 16 Sep 11, 2023 91 Critical
PHP 7.4 Nov 28, 2022 90 Critical
Python 3.8 Oct 7, 2024 88 Critical
Node.js 18 Apr 30, 2025 85 Critical
Spring 5.3 Dec 31, 2024 82 Critical
Ubuntu 20.04 Apr 2025 80 Critical

Don't know what's running? The endoflife.ai Stack Scanner will give you a read in minutes.


Why Compliance Risk Is Different from CVE Risk

Most developers think about EOL software as a CVE problem. "We'll upgrade when there's a critical vulnerability." That logic doesn't hold for compliance.

A CVE has a specific ID, a CVSS score, and a patch. An auditor can see your scanner output, confirm the patch was applied, and move on. EOL software doesn't work that way. When a component goes EOL, future vulnerabilities will never have patches. The risk is structural, not specific.

A CVSS 9.8 vulnerability that was patched last Tuesday is better, from a compliance perspective, than a component that's been EOL for 18 months with no reported CVEs. Because the EOL component is a process failure. It says something about whether your team is tracking software lifecycle at all.

The CISA KEV connection: When a vulnerability in EOL software gets exploited in the wild, it enters the KEV catalog — and you have no vendor patch, only replacement. FedRAMP's SA-22 control and NIST SP 800-53 both now reference unsupported software explicitly.


How to Make the Case to Your Boss

If you need budget or sprint time to fix EOL dependencies, the compliance angle is your best leverage. "We should upgrade because it's best practice" loses to "we have a new feature to ship." "We need to upgrade before our SOC 2 renewal" doesn't.

Here's the script:

"We're running [Node 18 / Python 3.8 / PHP 7.4] in production. These hit end-of-life in the last 12 months — no more security patches from the vendor. When we go through our SOC 2 renewal / PCI audit / [upcoming audit], the auditor will flag these as findings unless we have a documented upgrade plan or compensating controls. The migration to [Node 22 / Python 3.12 / PHP 8.3] is a [X sprint] project. A compliance finding causes more delay and creates customer-facing risk. I'd like to schedule the migration before [audit date]."

Name the specific versions. Name the audit. Estimate the migration cost. Contrast it with the audit-finding cost.


Practical Steps

01 — Run an EOL audit of your stack
Run node --version, python --version, php --version on your production servers. Check those versions at endoflife.ai/checker.html.

02 — Check EOL dates 12 months out, not just today
Your audit isn't today. The endoflife.ai API lets you query upcoming EOL dates programmatically so you can build this into your CI pipeline.

03 — For components you can't upgrade immediately, document a compensating control
Under PCI DSS 4.0, this is the Targeted Risk Analysis. It should include: what the component is, why it's EOL, what the migration blockers are, what compensating controls you have in place, and a defined remediation timeline.

04 — Build EOL tracking into your SDLC
Treat an upcoming EOL event the same way you'd treat a deprecation warning in your build output — something that needs a ticket before it becomes urgent.

05 — Know your options when you can't upgrade
For Linux OS EOL (Ubuntu, CentOS, RHEL, Debian), commercial extended support vendors like TuxCare provide security patches past vendor EOL. This can satisfy auditor requirements for compensating controls while a migration is underway.


EOL dependencies aren't just tech debt. When your company is going through compliance audits, they become findings. The tooling to know is free. The plan doesn't have to be elaborate.

Check your stack at endoflife.ai — free, no signup required.