Full Report
PaperCut released a second emergency patch last Friday, for two vulnerabilities in its NG and MF print management servers that attackers are already exploiting, after security researchers demonstrated that the vendor's first fix could be bypassed. The two flaws work as a chain. CVE-2026-81578, rated 8.8 on the CVSS scale, is an improper access control weakness in the PaperCut web management interface that lets unauthenticated remote requests reach administrative functions before the server finishes validating access. CVE-2026-82078, rated 9.4, is an unsafe dynamic class-loading flaw in the product's database utilities. The application loads database driver classes without checking them against an allowlist, so an attacker who can alter configuration parameters can get arbitrary Java bytecode running inside the application server process. Together they produce pre-authentication remote code execution on an internet-facing server. PaperCut software runs print queues for universities, school districts, hospitals, local government and large enterprises, and the platform has a history of drawing ransomware attention. Three earlier PaperCut NG/MF vulnerabilities already sit in the U.S. Cybersecurity and Infrastructure Security Agency's Known Exploited Vulnerabilities catalog, two of them weaponized in ransomware campaigns. Also read: CISA Adds Cisco ISE and PaperCut Vulnerabilities to Known Exploited Vulnerabilities Catalog Huntress, which first documented the activity, said it observed exploitation in two customer environments on Aug. 26 and Aug. 27. In one case the whole intrusion ran under two minutes. Attackers dropped hex-encoded Java class files that the firm described as a bridge between PaperCut and the underlying operating system, then issued basic reconnaissance commands - enumerating the current user, operating system version and running processes - rather than deploying ransomware or other payloads. That pattern typically indicates access brokering or target triage ahead of a later stage. The reason for a second patch was straightforward; the first one did not hold. Researchers at watchTowr found multiple ways around the original fix and turned up an additional authentication bypass in the process, while Huntress independently reproduced the full attack chain and found its own workarounds. Both firms worked with PaperCut's engineers on Emergency Patch Release 2. PaperCut said it was aware of confirmed customer incidents and was treating the matter with the highest priority. Release 2 covers PaperCut NG and MF versions 24, 25 and 26 on Windows, Linux and macOS. Customers running version 23 or earlier are told to upgrade rather than wait for a backported patch - a significant caveat, since Huntress reported that roughly 47% of the approximately 2,500 installations it tracks are on those older builds. The pair had not been added to CISA's KEV catalog as of the vendor's Aug. 28 update. Whether CISA adds the two CVEs to KEV, whether the reconnaissance-only activity converts into ransomware deployment, and whether Release 2 survives the scrutiny that broke its predecessor, remains to be seen. But administrators should pull PaperCut servers off the public internet regardless of patch status, and check application logs for unexpected process execution and stray .class files.
Analysis Summary
# Vulnerability: PaperCut NG/MF Pre-Authentication Remote Code Execution Chain
## CVE Details
- **CVE ID:** CVE-2026-81578 & CVE-2026-82078 (chained)
- **CVSS Score:** 8.8 & 9.4 (Critical)
- **CWE:** CWE-284 (Improper Access Control) & CWE-494 (Download of Code Without Integrity Check / Unsafe Dynamic Class Loading)
## Affected Systems
- **Products:** PaperCut NG, PaperCut MF
- **Versions:**
- Version 24.x, 25.x, and 26.x (Patched in Emergency Release 2)
- Version 23.x and earlier (End-of-life/Legacy; no backported patch available)
- **Configurations:** Systems running on Windows, Linux, and macOS. Internet-facing servers are at highest risk.
## Vulnerability Description
This is a two-stage attack chain that results in Pre-Authentication Remote Code Execution (RCE):
1. **CVE-2026-81578:** An improper access control flaw in the web management interface. It allows unauthenticated remote requests to interact with administrative functions because the server processes requests before completing access validation.
2. **CVE-2026-82078:** An unsafe dynamic class-loading flaw in database utilities. The application fails to check database driver classes against an allowlist.
By chaining these, an unauthenticated attacker can bypass authentication (via the first flaw) to modify configuration parameters that trigger the loading of malicious Java bytecode (via the second flaw), executing it within the application server process.
## Exploitation
- **Status:** Exploited in the wild. Multiple bypasses of the initial vendor fix have been documented by security firms (Huntress, watchTowr).
- **Complexity:** Low (Automated exploitation observed occurring in under two minutes).
- **Attack Vector:** Network (Remote)
## Impact
- **Confidentiality:** High (Full access to server data and print logs)
- **Integrity:** High (Ability to execute arbitrary Java bytecode and OS commands)
- **Availability:** High (Potential for ransomware deployment or system takeover)
## Remediation
### Patches
- **Emergency Patch Release 2:** Administrators must apply the latest updates for versions 24, 25, and 26 immediately.
- **Legacy Versions:** Users on version 23 or earlier must **upgrade** to a supported version (24+) to receive the fix, as no backported patches are planned.
### Workarounds
- **Network Isolation:** Immediately pull all PaperCut servers off the public internet and restrict access to trusted internal IPs or VPNs only.
## Detection
- **Indicators of Compromise (IoC):** Look for unexpected `.class` files dropped in application directories.
- **Log Analysis:** Check application logs for "hex-encoded Java class files" and unexpected process execution (e.g., reconnaissance commands like `whoami`, `systeminfo`, or process enumeration).
- **Speed of Attack:** Note that successful intrusions have been observed completing the full chain in less than 120 seconds.
## References
- **Vendor Advisory:** PaperCut Security Notifications (See vendor site)
- **Researcher Documentation:**
- hxxps[://]www[.]huntress[.]com/blog
- hxxps[://]x[.]com/watchtowrcyber/status/2093345328170758218
- **CISA KEV:** Check hxxps[://]www[.]cisa[.]gov/known-exploited-vulnerabilities-catalog for updates on these IDs.