[Testing] Mofcomp Activity#6392
Closed
Mikaayenson wants to merge 1 commit into
Closed
Conversation
Contributor
Rule: Tuning - GuidelinesThese guidelines serve as a reminder set of considerations when tuning an existing rule. Documentation and Context
Rule Metadata Checks
Testing and Validation
|
|
⛔️ Test failed Results
|
Contributor
Author
|
Testing. Closing/ |
Contributor
There was a problem hiding this comment.
Pull request overview
Tunes the existing Windows EQL detection rule “Mofcomp Activity” to reduce alert noise by excluding two dominant benign parent-process patterns (MSI-driven installs and MDT ZTITatoo MOF compilation).
Changes:
- Updated
updated_dateto reflect the tuning date. - Added EQL exclusions for
msiexec.exeparent process andcscript.execompilingZTITatoo.mof. - Updated the investigation guide false-positive analysis to document the new exclusions.
Comment on lines
+47
to
50
| not process.parent.name : "msiexec.exe" and | ||
| not | ||
| ( | ||
| process.parent.name : "ScenarioEngine.exe" and |
Comment on lines
+99
to
+100
| - MSI installer-driven MOF compilation during software installations (e.g., Microsoft Policy Platform, Dell Command Monitor, System Center VMM) is excluded by filtering out msiexec.exe as a parent process. | ||
| - Microsoft Deployment Toolkit (MDT) Zero Touch Installation tattooing via cscript.exe compiling ZTITatoo.mof is excluded as a known benign deployment operation. |
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.
Resolves elastic/ia-trade-team#
Trigger context
Elastic Workflow — SIEM Rule Tuning PR (genai-tradecraft)
Summary
Tunes Mofcomp Activity (
210d4430) to exclude two dominant false-positive patterns that account for 98.4 % of version-pinned alerts over 30 days.FP Classification
msiexec.exeparent processcscript.exeparent +ZTITatoo.mofBoth patterns are well-known benign operations with no adversary utility beyond what is already covered by other detection rules (e.g., suspicious MSI child processes, unusual script execution).
Query Diff
Simulation (30 days, version-pinned v11)
Detection Gap Risk: Low
msiexec.exe→ attacker-crafted MSI invokingmofcomp.exeis a theoretical vector, but MSI-based attacks are covered by dedicated rules (suspicious MSI child processes, unusual MSI execution context). The remaining detection surface retainscmd.exe,powershell.exe,WmiPrvSE.exe,installutil.exe, and other parent processes.ZTITatoo.mofis a static MDT file with no attacker utility.