What is the Windows Print Spooler?
The Windows Print Spooler (spoolsv.exe) is a long-running service that manages print queues and printer driver interactions. It runs as SYSTEM, making it a perennial target for privilege escalation. Previous high-profile Print Spooler vulnerabilities include PrintNightmare (CVE-2021-34527) and a series of related bugs. CVE-2022-38028 is another entry in this pattern, exploited by a sophisticated nation-state actor years after patching.
Overview
CVE-2022-38028 is a privilege escalation vulnerability in the Windows Print Spooler service. An attacker with local access can modify a JavaScript constraints file that is subsequently executed by the Print Spooler with SYSTEM-level permissions. The vulnerability was patched in October 2022 but only added to CISA KEV in April 2024 after Microsoft and US intelligence agencies publicly attributed its exploitation to the Russian GRU-linked group Forest Blizzard (also known as APT28 or Fancy Bear) via a custom post-exploitation tool called GooseEgg.
Affected Versions
| Product | Vulnerable | Fixed |
|---|---|---|
| Windows 7 SP1 | Yes | KB5018454 |
| Windows Server 2008 R2 | Yes | KB5018454 |
| Windows 10 (multiple versions) | Yes | October 2022 CU |
| Windows 11 | Yes | October 2022 CU |
| Windows Server 2012–2022 | Yes | October 2022 CU |
Technical Details
The Print Spooler service supports JavaScript-based printer constraints files as part of the Point and Print mechanism. The vulnerability allows a low-privileged local attacker to place or modify a JavaScript file in a path that the Print Spooler service will subsequently load and execute with SYSTEM privileges.
- Attack vector: Local — requires an existing foothold (low-privileged user account) on the target system
- Privileges required: Low — a standard unprivileged domain user is sufficient
- User interaction: None — exploitation is fully automated once a foothold is established
- Chaining: Used as the privilege escalation step in a broader intrusion chain — Forest Blizzard paired it with credential theft tools to dump NTLM hashes and Kerberos tickets after achieving SYSTEM
The GooseEgg tool is a Windows application that exploits this flaw to launch attacker-specified processes (shells, DLLs) with SYSTEM-level permissions. GooseEgg also maintains a persistence mechanism to re-launch itself after reboots.
Discovery
The vulnerability was discovered internally and patched by Microsoft in October 2022. The degree of exploitation was not publicly known until April 2024, when Microsoft Threat Intelligence and a joint advisory from NSA, CISA, FBI, and UK NCSC revealed that Forest Blizzard had been exploiting it since at least June 2020 — approximately two years before the CVE was assigned.
Exploitation Context
Forest Blizzard (GRU Unit 26165, also tracked as APT28/Fancy Bear/STRONTIUM) is a Russian military intelligence cyberespionage unit. The group exploited CVE-2022-38028 as part of targeted operations against US, European, and Ukrainian government, defense, energy, and transportation sectors. After achieving SYSTEM via GooseEgg, the actor dumped credentials, moved laterally across networks, and exfiltrated sensitive data. Exploitation was confirmed to have pre-dated the October 2022 patch by roughly two years.
Remediation
- Apply the October 2022 Patch Tuesday cumulative updates for all affected Windows versions (KB5018427, KB5018418, etc.)
- If patching is delayed, consider disabling the Print Spooler on servers and endpoints that do not require printing:
Stop-Service -Name Spooler -Force; Set-Service -Name Spooler -StartupType Disabled - Restrict Point and Print to approved print servers via Group Policy
- Review event logs for GooseEgg indicators: unexpected processes launched by
spoolsv.exe, unusual SYSTEM-context JavaScript execution - Hunt for GooseEgg artifacts: the tool drops files with names like
wayzgoose.exe,JetSetGo.exe, andservtask.bat
Key Details
| Property | Value |
|---|---|
| CVE ID | CVE-2022-38028 |
| Vendor / Product | Microsoft — Windows |
| NVD Published | 2022-10-11 |
| NVD Last Modified | 2025-10-30 |
| CVSS 3.1 Score | 7.8 |
| CVSS 3.1 Vector | CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H |
| Severity | HIGH |
| CISA KEV Added | 2024-04-23 |
| CISA KEV Deadline | 2024-05-14 |
| Known Ransomware Use | No |
CVSS 3.1 Breakdown
Required Action
Timeline
| Date | Event |
|---|---|
| 2022-10-11 | Microsoft patches CVE-2022-38028 in October 2022 Patch Tuesday |
| 2024-04-22 | Microsoft and NSA/CISA/FBI publish joint advisory attributing exploitation to Forest Blizzard (APT28/GRU Unit 26165) via GooseEgg tool |
| 2024-04-23 | Added to CISA Known Exploited Vulnerabilities catalog |
| 2024-05-14 | CISA BOD 22-01 remediation deadline |
References
| Resource | Type |
|---|---|
| Microsoft Security Response Center — CVE-2022-38028 | Vendor Advisory |
| Microsoft Threat Intelligence — Forest Blizzard GooseEgg Analysis | Security Research |
| NSA/CISA/FBI Advisory — Forest Blizzard GooseEgg | US Government |
| NVD — CVE-2022-38028 | Vulnerability Database |
| CISA KEV Catalog Entry | US Government |