Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Rule Tuning] Remote Execution via File Shares - False positive for CrowdStrike updates #4424

Closed
htbcallan opened this issue Jan 27, 2025 · 1 comment · Fixed by #4448
Closed
Assignees
Labels
community Rule: Tuning tweaking or tuning an existing rule Team: TRADE

Comments

@htbcallan
Copy link

Link to Rule

https://github.com/elastic/detection-rules/blob/main/rules/windows/lateral_movement_execution_via_file_shares_sequence.toml

Rule Tuning Type

False Positives - Reducing benign events mistakenly identified as threats.

Description

'Remote Execution via File Shares' generating false positives for normal CrowdStrike sensor update activity.
Propose adding the following to query NOT filter

        (process.executable : "?:\\Windows\\System32\\drivers\\CrowdStrike\\*-FalconSensor_Windows.*.exe" and 
         process.code_signature.trusted == true and process.code_signature.subject_name : "CrowdStrike, Inc.")

In my current use case, process.executable is "19011-FalconSensor_Windows.x64.exe", where 19011 is a release number and x64 is the platform type. process.code_signature.* should be static across releases and platforms.

_source from example ancestor events from logs-endpoint.events.file and logs-endpoint.events.process attached

Example Data

endpoint.events.file.json
endpoint.events.process.json

@htbcallan htbcallan added Rule: Tuning tweaking or tuning an existing rule Team: TRADE labels Jan 27, 2025
@w0rk3r w0rk3r self-assigned this Feb 5, 2025
@w0rk3r
Copy link
Contributor

w0rk3r commented Feb 5, 2025

Hey @htbcallan, I just pushed this PR to exclude this activity. Thanks for letting us know, and I'm looking forward to the next contributions!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
community Rule: Tuning tweaking or tuning an existing rule Team: TRADE
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants