-
Notifications
You must be signed in to change notification settings - Fork 574
[New Rule] Clearing Windows Security Logs #529
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
threat-punter
merged 20 commits into
elastic:main
from
janniten:windows-clear-security-log
Jan 12, 2021
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
2daae16
[New Rule] Clearing Windows Security Logs
janniten ec8895f
Fix Date Format Error
janniten fedefea
Merge branch 'main' into windows-clear-security-log
threat-punter 68b1fad
Merge branch 'main' into windows-clear-security-log
brokensound77 34b5b69
Update rules/windows/defense_evasion_clearing_windows_security_logs.toml
janniten 470eb52
Update rules/windows/defense_evasion_clearing_windows_security_logs.toml
janniten d9bf610
Update rules/windows/defense_evasion_clearing_windows_security_logs.toml
janniten be4d4a2
Update rules/windows/defense_evasion_clearing_windows_security_logs.toml
janniten c3e27bd
Update rules/windows/defense_evasion_clearing_windows_security_logs.toml
janniten 721badc
Update rules/windows/defense_evasion_clearing_windows_security_logs.toml
janniten f1f8b92
Update rules/windows/defense_evasion_clearing_windows_security_logs.toml
janniten c59dc4b
Update rules/windows/defense_evasion_clearing_windows_security_logs.toml
janniten 7336873
Update rules/windows/defense_evasion_clearing_windows_security_logs.toml
janniten eddb2e4
Merge branch 'main' into windows-clear-security-log
brokensound77 7370664
Add Elastic tag
threat-punter a84c17a
Merge branch 'main' into windows-clear-security-log
threat-punter 04ed9ed
update maturity
threat-punter 8df0879
Add Elastic to list of authors
threat-punter cfe60fd
bump updated_date
threat-punter 087fa79
Merge branch 'main' into windows-clear-security-log
threat-punter 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
36 changes: 36 additions & 0 deletions
36
rules/windows/defense_evasion_clearing_windows_security_logs.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,36 @@ | ||
[metadata] | ||
creation_date = "2020/11/12" | ||
maturity = "production" | ||
updated_date = "2021/01/11" | ||
|
||
[rule] | ||
author = ["Elastic", "Anabella Cristaldi"] | ||
description = """ | ||
Identifies attempts to clear Windows event log stores. This is often done by attackers in an attempt to evade | ||
detection or destroy forensic evidence on a system. | ||
""" | ||
from = "now-9m" | ||
index = ["winlogbeat-*"] | ||
language = "kuery" | ||
license = "Elastic License" | ||
name = "Windows Event Logs Cleared" | ||
risk_score = 21 | ||
rule_id = "45ac4800-840f-414c-b221-53dd36a5aaf7" | ||
severity = "low" | ||
tags = ["Elastic", "Host", "Windows", "Threat Detection", "Defense Evasion"] | ||
type = "query" | ||
|
||
query = ''' | ||
event.action:("audit-log-cleared" or "Log clear") | ||
''' | ||
janniten marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
janniten marked this conversation as resolved.
Show resolved
Hide resolved
|
||
[[rule.threat]] | ||
framework = "MITRE ATT&CK" | ||
[[rule.threat.technique]] | ||
id = "T1070" | ||
name = "Indicator Removal on Host" | ||
reference = "https://attack.mitre.org/techniques/T1070/" | ||
[rule.threat.tactic] | ||
id = "TA0005" | ||
name = "Defense Evasion" | ||
reference = "https://attack.mitre.org/tactics/TA0005/" |
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.