Conversation
Detects suspicious child process execution originating from PaperCut server components: https://www.huntress.com/blog/papercut-actively-exploited https://www.papercut.com/kb/Main/security-bulletin-27-aug-2026-urgent-security-advisory/
|
⛔️ Test failed Results
|
terrancedejesus
approved these changes
Aug 28, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Adds new Elastic detection rules to identify likely exploitation activity associated with PaperCut NG/MF / Hive, focusing on CVE-2026-82078 and CVE-2026-81578 behaviors (suspicious child process spawning and malicious .class drops).
Changes:
- Adds a Windows EQL rule detecting suspicious child processes spawned by PaperCut server components (
pc-app.exe,pc-printjob-spooler.exe). - Adds a cross-platform (Windows/Linux/macOS) EQL file rule detecting Java
.classcreation under PaperCut NG/MFserver/lib, with investigation guidance for correlated artifacts.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| rules/windows/initial_access_papercut_suspicious_child_process.toml | New Windows EQL detection for suspicious PaperCut child-process execution plus investigation guide. |
| rules/cross-platform/initial_access_papercut_java_class_file.toml | New cross-platform EQL file-write detection for suspicious PaperCut server/lib .class payload drops plus investigation guide. |
Suppressed comments (1)
rules/cross-platform/initial_access_papercut_java_class_file.toml:89
- The file-event predicate uses
event.action in ("creation", "overwrite")andfile.extension : "class". Most file rules in this repo key offevent.type in ("creation", "change"), and==is a faster/clearer exact match forfile.extension. Also, usinglikefor Linux/macOS paths avoids the more expensive case-insensitive:operator on case-sensitive filesystems.
file where host.os.type in ("windows", "linux", "macos") and
event.action in ("creation", "overwrite") and
file.extension : "class" and
file.path : (
"?:\\Program Files\\PaperCut*\\server\\lib\\*",
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
w0rk3r
approved these changes
Aug 28, 2026
|
⛔️ Test failed Results
|
|
⛔️ Test failed Results
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Detects suspicious child process execution originating from PaperCut server components:
https://www.huntress.com/blog/papercut-actively-exploited
https://www.papercut.com/kb/Main/security-bulletin-27-aug-2026-urgent-security-advisory/