Free Microsoft patch feeds and API: the Industry's Hot Patches and CVEs

All feeds refresh three times a day: 5 AM, 12:30 PM, and 7 PM US Central.

The Senserva feeds are free to use. The headline feed is Hot Patches: a unique list Senserva generates of the Microsoft patches and CVEs of most interest across the industry right now. It is not a raw dump. We score every Microsoft update and CVE against the signals that actually predict getting breached, confirmed exploitation (CISA KEV), known ransomware use, EPSS probability, CVSS severity, and how recently each item started moving, and publish the top of that ranking as data, so a tool built on it always leads with what to fix first.

Alongside it: the full machine-readable Microsoft patch catalog, RSS feeds for the newest updates and newest actively-exploited CVEs, and the Patch Tuesday calendar, ready to pull into your RSS reader, SIEM, scripts, or spreadsheets. No account, no API key, no rate-limit gymnastics: static files rebuilt from the public sources three times a day: 5 AM, 12:30 PM, and 7 PM US Central and served from a CDN. One attribution rule applies: Patch Data Provided by Senserva, with a link back to this page, is required wherever you use or republish it. Details below.

Senserva is a Microsoft Intelligent Security Association member

The feeds

Microsoft patches RSS

Every Microsoft security update (KB) as it ships, ranked by risk: actively exploited (CISA KEV) first, then EPSS exploit probability and CVSS. Each item links to a full KB detail page with the CVE list and affected products.

The 60 newest updates. Refreshed three times a day: 5 AM, 12:30 PM, and 7 PM US Central.
Non-Microsoft KEV RSS

Actively exploited vulnerabilities across every non-Microsoft vendor, straight from the CISA Known Exploited Vulnerabilities catalog, with EPSS scores and ransomware flags. The fastest way to hear that something in your third-party stack is under attack.

The 60 newest KEV additions. Refreshed three times a day: 5 AM, 12:30 PM, and 7 PM US Central.
Exploited this week (RSS, all vendors)

Every vulnerability newly confirmed exploited in the wild: CISA KEV additions from the last 30 days across all vendors, Microsoft included, with CVSS and ransomware flags. The subscription form of the Exploited This Week page.

New entries usually within hours of CISA publishing. Refreshed three times a day: 5 AM, 12:30 PM, and 7 PM US Central.
Patch Tuesday RSS

One item per monthly Microsoft release: update count, CVEs fixed, how many are actively exploited, and a link to the full ranked breakdown. Subscribe once and never miss a release summary.

One item per month. Published on Patch Tuesday.
Microsoft patches JSON API

The full machine-readable catalog: hundreds of updates back through two years, each with KB number, release date, Severity, CVSS, EPSS, CISA KEV and ransomware flags, the complete CVE list, and affected products. One GET, no auth.

Full catalog in one file. Refreshed three times a day: 5 AM, 12:30 PM, and 7 PM US Central.
Hottest CVEs and patches JSON API

The top-ranked CVEs and patches right now, the same ranking that drives the patch tracker: a blend of CISA KEV, ransomware use, EPSS, CVSS, and recency. Four ranked lists (cves, cvesMs, cvesNonMs, kbs), each item with its rank, score, Severity, dates, and a link to the detail page. One GET, no auth.

Top 100 of each. Refreshed three times a day: 5 AM, 12:30 PM, and 7 PM US Central.
Patch Tuesday calendar (.ics)

The next twelve Patch Tuesdays as a standard calendar subscription for Outlook, Google Calendar, or Apple Calendar. Each entry links back to the live release page.

Rolling 12 months ahead.
Senserva AI read: the global risk picture (RSS)

A daily global security risk review written from the live feed data: what is being exploited right now, what to patch first, and why. Every vulnerability named is validated against the feed data before publishing, the same read that runs on the home page.

One item per day, last 30 days. Refreshed three times a day: 5 AM, 12:30 PM, and 7 PM US Central.

Why the Hot Patches feed is the one to build on

Microsoft ships 1,000 to 2,000 CVEs a year across Windows, Exchange, SharePoint, Office, Azure, and the rest of the stack. Almost none are being exploited; a handful are being used in real attacks this week. A raw patch list cannot tell those apart. The Hot Patches feed can. It ranks every Microsoft update and CVE by a single blended score built from the signals that actually predict getting breached: confirmed exploitation from the CISA KEV catalog, known ransomware use, EPSS exploitation probability, CVSS severity, and how recently the item started moving. The result is a fix-first list you can drop straight into a product or a patch workflow, refreshed three times a day: 5 AM, 12:30 PM, and 7 PM US Central.

Prioritize in your SIEM

Pull the JSON into Sentinel, Splunk, or a spreadsheet and correlate the KEV and ransomware flags against the KBs missing in your estate. Patch the exploited handful first, defer the rest to cadence.

Track it hands-free

Subscribe to the RSS feeds in any reader for the newest Microsoft updates and the newest actively-exploited CVEs, or the .ics calendar for the next twelve Patch Tuesdays. No polling code to write.

The same ranking runs the live Microsoft Patch Tracker, the CVE and vulnerability management reference, and the What's Hot in the CVE and KB world page. The feeds expose that same intelligence as data. All of it is free; the only ask is attribution, "Patch Data Provided by Senserva" linking back here.

Quick start with the JSON API

The API is a single static JSON document: generated (build date), source, count, and a patches array. Filter it with anything that reads JSON.

curl + jq: actively exploited updates from the latest release
curl -s https://senserva.com/api/microsoft-patches.json |
  jq '[.patches[] | select(.kev)] | sort_by(-.epss) | .[:10] | .[] | {kb, date, severity, epss, kev_cves}'
PowerShell: ransomware-linked updates you may be missing
$p = (Invoke-RestMethod https://senserva.com/api/microsoft-patches.json).patches
$p | Where-Object ransom | Sort-Object epss -Descending |
  Select-Object kb, date, severity, cvss, epss -First 10

Fields on each patch

kbKB number (string, no KB prefix). Detail page at /kb/<kb>.html.
dateRelease date, ISO 8601 (YYYY-MM-DD).
severityHighest Severity across the update's CVEs: Critical, High, Medium, or Low.
cvssHighest CVSS v3 base score across the update's CVEs.
epssHighest EPSS exploit probability (0 to 1) across the update's CVEs, from FIRST.org.
kevtrue when at least one CVE is in the CISA Known Exploited Vulnerabilities catalog; those CVEs are listed in kev_cves.
ransomtrue when a CVE is linked to known ransomware campaigns; listed in ransom_cves.
cves, countAll CVEs the update fixes, and how many. Each has a detail page at /cve/<id>.html.
productsAffected Microsoft products.

Free to use, attribution required

The Senserva feeds and API are free, with no login and no key. In return, attribution is required: if you publish a page, dashboard, newsletter, product, or tool built on this data, show a visible credit that reads Patch Data Provided by Senserva and links back to this feeds page. It keeps the data free, and it helps the next person find it. Use one of these exactly:

HTML link (required credit)
<a href="https://senserva.com/feeds.html">Patch Data Provided by Senserva</a>
Plain text (required credit)
Patch Data Provided by Senserva (https://senserva.com/feeds.html)

Every feed carries this credit in its own metadata too: a provider field of "Provided by Senserva.com" in the JSON APIs, a <generator> and <copyright> line in the RSS, so downstream tools can surface it automatically. Please also keep the third-party attributions below (FIRST.org for EPSS, NVD and CIRCL for CVSS, CISA for KEV).

Fair use and sources

The feeds and API are free for personal and commercial use, no login and no key. If you publish something built on them, a link back to the tracker hub is appreciated. What they re-serve is limited to sources that are free to redistribute: Microsoft MSRC for the KB-to-CVE mapping and the CISA Known Exploited Vulnerabilities catalog (United States government work). Rankings and risk roll-ups are Senserva's own.

Sources you need to pull direct

We do not re-feed sources that require an API key or carry attribution terms. If you need these datasets, go to the provider:

  • FIRST.org EPSS: the authoritative exploit-probability scores. The EPSS values in our API are convenience copies used for ranking; FIRST.org asks to be cited whenever its scores are reused, and that obligation travels with the numbers.
  • NIST NVD: the authoritative CVSS data. Cite NVD if you republish CVSS values.
  • VulnCheck KEV: requires free registration and an API key. Never re-served here.
  • ENISA EU Vulnerability Database: shown on our pages with credit, never re-served here.

Want the same ranking applied to your own estate, which of these updates are actually missing on your devices? That is Senserva.

Feeds and API FAQ

Is there a free RSS feed for Microsoft patches?

Yes. https://senserva.com/feed/microsoft-patches.xml lists every Microsoft security update as it ships, ranked by real-world risk, with no login or key required.

Is there a free JSON API for Microsoft patch data?

Yes. https://senserva.com/api/microsoft-patches.json returns the full catalog with Severity, CVSS, EPSS, CISA KEV and ransomware flags, CVE lists, and affected products. It is a static file, so it is fast and has no auth or rate limits.

How often is the data refreshed?

Several times a day. The build pulls Microsoft MSRC, CISA KEV, FIRST.org EPSS, and NVD / CIRCL, re-ranks everything, and republishes the feeds, the API, and every KB and CVE detail page.

Can I get alerts for non-Microsoft vulnerabilities under attack?

Yes. https://senserva.com/feed/non-ms-kev.xml carries every new CISA KEV entry for non-Microsoft vendors, with EPSS scores and ransomware flags, usually within hours of CISA publishing it.

Is there a feed of the hottest, most-exploited Microsoft patches?

Yes. https://senserva.com/api/hot.json is the Hot Patches feed: the top Microsoft updates and CVEs right now, ranked by a blend of confirmed exploitation (CISA KEV), ransomware use, EPSS probability, CVSS severity, and recency. It returns four ranked lists (all CVEs, Microsoft CVEs, non-Microsoft CVEs, and KBs), each item with its rank, score, dates, and a link to the detail page.

Are the feeds free? What attribution is required?

The feeds and API are free, with no login and no key. Attribution is required: show "Patch Data Provided by Senserva" with a link back to https://senserva.com/feeds.html wherever you use or republish the data. Also keep the third-party credits (FIRST.org for EPSS, NVD and CIRCL for CVSS, CISA for KEV).

Data notice: the trackers, feeds, and API are provided as is, for informational purposes only, without warranty of any kind. Senserva, LLC does not guarantee the accuracy, completeness, or timeliness of third-party data and accepts no liability for actions taken based on it; verify against the primary source before acting. All use of this data is subject to the Senserva EULA.

Senserva
Three Free Unlimited Audits
1 scan to find, 2 to review your fixes.
Setup and running in minutes. Your data stays local, in a results database only you hold.
Everything Siemserva by Senserva does: every missing patch ranked by real attacks, all 650+ security checks, and full reports.
All users · All settings · All patches · All tenants
Includes our advanced Claude MCP: everything you need to run full audits.

Free registration is all it takes, no card. Want it always on? Summer Special: unlimited use, up to 50 tenants, $600/mo or $6,500/yr.