WOFA

Windows Organised Feed for Admins

Live site: wofa.jtucker.me.uk

WOFA icon

WOFA is inspired by SOFA (Simple Organized Feed for Apple), the Mac admins community tool that publishes structured, machine-readable Apple OS update data. WOFA brings the same idea to the Windows world β€” aggregating Windows cumulative security update data from the MSRC CVRF API and CISA KEV into clean, versioned JSON feeds suitable for automation, MDM tooling, and compliance pipelines.


What it does

WOFA pulls data from two public, unauthenticated sources on a 6-hour schedule and publishes the results as static files:

OS versions are discovered automatically from the MSRC ProductTree β€” no manual config needed when Microsoft adds a new version.

WOFA dashboard showing Windows update data by OS version with CVE counts and exploitation status


Usage examples

# Get the latest build for Windows 11 24H2
curl -s https://wofa.jtucker.me.uk/v1/windows_data_feed.json \
  | jq '.OSVersions[] | select(.OSVersion == "Windows 11 24H2") | .Latest.ProductVersion'

# List all actively exploited CVEs across every tracked version
curl -s https://wofa.jtucker.me.uk/v1/windows_data_feed.json \
  | jq '[.OSVersions[].SecurityReleases[].ActivelyExploitedCVEs[]] | unique | sort[]'

# Check when the feed was last updated
curl -s https://wofa.jtucker.me.uk/metadata.json | jq '{LastCheck, UpdateHash}'

# Look up a specific CVE across all versions
CVE="CVE-2025-21333"
curl -s https://wofa.jtucker.me.uk/v1/cve_index.json \
  | jq --arg cve "$CVE" '.[$cve] | {severity, cvss_score, in_kev, affected: [.affected[].os]}'
# Get latest build for all tracked versions
$feed = Invoke-RestMethod "https://wofa.jtucker.me.uk/v1/windows_data_feed.json"
$feed.OSVersions | Select-Object OSVersion, @{Name="LatestBuild"; Expression={$_.Latest.ProductVersion}} | Format-Table

Key features


Related resources

Resource URL
SOFA (inspiration) sofa.macadmins.io
MSRC Security Update Guide msrc.microsoft.com/update-guide
MSRC CVRF API api.msrc.microsoft.com/cvrf/v3.0/
CISA KEV Catalog cisa.gov/known-exploited-vulnerabilities-catalog
NIST NVD nvd.nist.gov
Windows 11 Release Health learn.microsoft.com/.../windows11-release-information
Windows Server Release Health learn.microsoft.com/.../windows-server-release-info