-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sigma Rule Update (2023-10-23 20:05:45) (#513)
Co-authored-by: hach1yon <[email protected]>
- Loading branch information
1 parent
81898fb
commit 7692e0b
Showing
32 changed files
with
540 additions
and
223 deletions.
There are no files selected for viewing
This file contains 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
34 changes: 34 additions & 0 deletions
34
sigma/builtin/process_creation/proc_creation_win_certoc_download_direct_ip.yml
This file contains 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,34 @@ | ||
title: File Download From IP Based URL Via CertOC.EXE | ||
id: b86f6dea-0b2f-41f5-bdcc-a057bd19cd6a | ||
related: | ||
- id: 70ad0861-d1fe-491c-a45f-fa48148a300d | ||
type: similar | ||
status: experimental | ||
description: Detects when a user downloads a file from an IP based URL using CertOC.exe | ||
references: | ||
- https://lolbas-project.github.io/lolbas/Binaries/Certoc/ | ||
author: Nasreddine Bencherchali (Nextron Systems) | ||
date: 2023/10/18 | ||
tags: | ||
- attack.command_and_control | ||
- attack.execution | ||
- attack.t1105 | ||
logsource: | ||
category: process_creation | ||
product: windows | ||
detection: | ||
process_creation: | ||
EventID: 4688 | ||
Channel: Security | ||
selection_img: | ||
- NewProcessName|endswith: \certoc.exe | ||
- OriginalFileName: CertOC.exe | ||
selection_ip: | ||
CommandLine|re: ://[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3} | ||
selection_cli: | ||
CommandLine|contains: -GetCACAPS | ||
condition: process_creation and (all of selection*) | ||
falsepositives: | ||
- Unknown | ||
level: high | ||
ruletype: Sigma |
This file contains 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
83 changes: 83 additions & 0 deletions
83
sigma/builtin/process_creation/proc_creation_win_curl_download_direct_ip_exec.yml
This file contains 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,83 @@ | ||
title: File Download From IP URL Via Curl.EXE | ||
id: 9cc85849-3b02-4cb5-b371-3a1ff54f2218 | ||
related: | ||
- id: 5cb299fc-5fb1-4d07-b989-0644c68b6043 | ||
type: similar | ||
status: experimental | ||
description: Detects file downloads directly from IP address URL using curl.exe | ||
references: | ||
- https://labs.withsecure.com/publications/fin7-target-veeam-servers | ||
- https://github.com/WithSecureLabs/iocs/blob/344203de742bb7e68bd56618f66d34be95a9f9fc/FIN7VEEAM/iocs.csv | ||
- https://github.com/pr0xylife/IcedID/blob/8dd1e218460db4f750d955b4c65b2f918a1db906/icedID_09.28.2023.txt | ||
author: Nasreddine Bencherchali (Nextron Systems) | ||
date: 2023/10/18 | ||
tags: | ||
- attack.execution | ||
logsource: | ||
category: process_creation | ||
product: windows | ||
detection: | ||
process_creation: | ||
EventID: 4688 | ||
Channel: Security | ||
selection_img: | ||
- NewProcessName|endswith: \curl.exe | ||
- OriginalFileName: curl.exe | ||
selection_ip: | ||
CommandLine|re: ://[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3} | ||
selection_http: | ||
CommandLine|contains: http | ||
selection_flag: | ||
CommandLine|contains: | ||
- ' -O' | ||
- --remote-name | ||
- --output | ||
filter_main_ext: | ||
CommandLine|endswith: | ||
- .bat | ||
- .bat" | ||
- .dat | ||
- .dat" | ||
- .dll | ||
- .dll" | ||
- .exe | ||
- .exe" | ||
- .gif | ||
- .gif" | ||
- .hta | ||
- .hta" | ||
- .jpeg | ||
- .jpeg" | ||
- .log | ||
- .log" | ||
- .msi | ||
- .msi" | ||
- .png | ||
- .png" | ||
- .ps1 | ||
- .ps1" | ||
- .psm1 | ||
- .psm1" | ||
- .vbe | ||
- .vbe" | ||
- .vbs | ||
- .vbs" | ||
- .bat' | ||
- .dat' | ||
- .dll' | ||
- .exe' | ||
- .gif' | ||
- .hta' | ||
- .jpeg' | ||
- .log' | ||
- .msi' | ||
- .png' | ||
- .ps1' | ||
- .psm1' | ||
- .vbe' | ||
- .vbs' | ||
condition: process_creation and (all of selection_* and not 1 of filter_main_*) | ||
falsepositives: | ||
- Unknown | ||
level: medium | ||
ruletype: Sigma |
This file contains 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
2 changes: 1 addition & 1 deletion
2
sigma/builtin/process_creation/proc_creation_win_desktopimgdownldr_remote_file_download.yml
This file contains 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
This file contains 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
This file contains 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
This file contains 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
File renamed without changes.
This file contains 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
Oops, something went wrong.