JJ
09/23/2025, 8:59 AMsofa_unpatched_cves table but Windows doesn't seem to have something similar.
I assume the best way is to write something like this that you keep up to date manually with known vulnerable versions?
SELECT
hostname,
version,
build,
CASE
WHEN build < '19041' THEN 'Critical - Windows 10 < 2004'
WHEN build < '19042' THEN 'High - Missing security updates'
WHEN build < '22000' THEN 'Medium - Windows 10 EOL approaching'
ELSE 'Current'
END as vulnerability_status
FROM os_version
WHERE platform = 'windows'Matt Rebelo
09/23/2025, 2:00 PM