-
Notifications
You must be signed in to change notification settings - Fork 646
[New Rule] High Number of Process and/or Services Termination #672
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
Merged
Merged
Changes from 6 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
ef0da79
[New Rule] High Number of Process and/or Services Termination
Samirbous fe117d0
removed url and fixed ruleid
Samirbous c530fe1
fixed tags
Samirbous ecf2e9d
Update rules/windows/defense_evasion_stop_process_service_threshold.toml
Samirbous d43422e
Update rules/windows/defense_evasion_stop_process_service_threshold.toml
Samirbous 5864476
relinted
Samirbous 17b689f
Update rules/windows/defense_evasion_stop_process_service_threshold.toml
Samirbous 2e78ba5
Update rules/windows/defense_evasion_stop_process_service_threshold.toml
Samirbous ad7debb
Merge branch 'main' into evasion-stop-delete-commands-threshold
Samirbous File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
45 changes: 45 additions & 0 deletions
45
rules/windows/defense_evasion_stop_process_service_threshold.toml
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,45 @@ | ||
| [metadata] | ||
| creation_date = "2020/12/03" | ||
| maturity = "production" | ||
| updated_date = "2020/12/03" | ||
|
|
||
| [rule] | ||
| author = ["Elastic"] | ||
| description = """ | ||
| This rule identifies a high number (10) of process modifications (stop, delete, or suspend) from the same host within a | ||
| short time period. This may indicate a defense evasion attempt. | ||
| """ | ||
| from = "now-9m" | ||
|
Samirbous marked this conversation as resolved.
|
||
| index = ["winlogbeat-*", "logs-endpoint.events.*"] | ||
| language = "kuery" | ||
| license = "Elastic License" | ||
| name = "High Number of Process and/or Service Termination" | ||
|
Samirbous marked this conversation as resolved.
Outdated
Samirbous marked this conversation as resolved.
Outdated
|
||
| risk_score = 47 | ||
| rule_id = "035889c4-2686-4583-a7df-67f89c292f2c" | ||
| severity = "medium" | ||
| tags = ["Elastic", "Host", "Windows", "Threat Detection", "Defense Evasion"] | ||
| type = "threshold" | ||
|
|
||
| query = ''' | ||
| event.category:process and event.type:start and process.name:(net.exe or sc.exe or taskkill.exe) and | ||
| process.args:(stop or pause or delete or "/PID" or "/IM" or "/T" or "/F" or "/t" or "/f" or "/im" or "/pid") | ||
| ''' | ||
|
|
||
|
|
||
| [[rule.threat]] | ||
| framework = "MITRE ATT&CK" | ||
| [[rule.threat.technique]] | ||
| id = "T1089" | ||
| name = "Disabling Security Tools" | ||
| reference = "https://attack.mitre.org/techniques/T1089/" | ||
|
|
||
|
|
||
| [rule.threat.tactic] | ||
| id = "TA0005" | ||
| name = "Defense Evasion" | ||
| reference = "https://attack.mitre.org/tactics/TA0005/" | ||
|
|
||
| [rule.threshold] | ||
| field = "host.id" | ||
|
Samirbous marked this conversation as resolved.
|
||
| value = 10 | ||
|
|
||
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.
Uh oh!
There was an error while loading. Please reload this page.