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

fix search and conditions in sigma version of batch_file_write_to_sys… #2993

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 7 additions & 4 deletions dev/endpoint/batch_file_write_to_system32.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,14 @@ type: TTP
description: The search looks for a batch file (.bat) written to the Windows system
directory tree.
data_source:
- Sysmon Event ID 1
- Sysmon Event ID 11
search:
selection1:
Image|endswith: '*'
condition: selection1
selection:
TargetFilename|endswith: .bat
TargetFilename|contains:
- system32
- syswow64
condition: selection
how_to_implement: To successfully implement this search you need to be ingesting information
on process that include the name of the process responsible for the changes from
your endpoints into the `Endpoint` datamodel in the `Processes` node. In addition,
Expand Down