[Rule Tuning] Potential Data Exfiltration Through Curl - #6520
Open
Mikaayenson wants to merge 1 commit into
Open
Conversation
…c081-4796-4a2c-800e-590032f74733)
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
There was a problem hiding this comment.
Pull request overview
This PR tunes the existing EQL detection rule “Potential Data Exfiltration Through Curl” to reduce false positives by refining and adding additional benign-use exclusions while keeping the core curl upload/exfiltration detection logic intact.
Changes:
- Updates
updated_dateto reflect the tuning date. - Fixes/adjusts exclusion logic for known benign curl usage (Oracle/Retina, clevis variants, Cloudamize registration, unix-socket usage, Mozilla telemetry).
- Expands existing parent/argument-based filters to reduce alert volume.
Comment on lines
+134
to
136
| process.args == "--unix-socket" or | ||
| process.parent.name like "clevis*" or | ||
| process.parent.executable in ("/usr/bin/clevis-decrypt-tang", "/bin/clevis-decrypt-tang") or |
Aegrah
approved these changes
Jul 31, 2026
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#1047
Fixes a broken oracle/retina monitoring exclusion that matched on parent executable path instead of parent command line, broadens the clevis disk-encryption parent filter to cover all clevis-* variants, and adds exclusions for Cloudamize agent registration, curl calls over local unix sockets, and Mozilla Firefox crash reporter telemetry uploads. Together these changes reduce false positive volume by approximately 90% while preserving detection of actual suspicious curl data uploads across 56 clusters.
Full telemetry triage, analytics links, and KQL verification: see linked ia-trade-team issue.