forked from SigmaHQ/sigma
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request SigmaHQ#4250 from SigmaHQ/rule-devel
fix: issue with wildcard in rule, refactor: new LSASS dump outputs, more
- Loading branch information
Showing
5 changed files
with
51 additions
and
6 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
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
42 changes: 42 additions & 0 deletions
42
rules/windows/create_stream_hash/create_stream_hash_zip_tld_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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
title: Potentially Suspicious File Download From ZIP TLD | ||
id: 0bb4bbeb-fe52-4044-b40c-430a04577ebe | ||
status: experimental | ||
description: Detects the download of a file with a potentially suspicious extension from a .zip top level domain. | ||
references: | ||
- https://twitter.com/cyb3rops/status/1659175181695287297 | ||
- https://fabian-voith.de/2020/06/25/sysmon-v11-1-reads-alternate-data-streams/ | ||
author: Florian Roth (Nextron Systems) | ||
date: 2023/05/18 | ||
tags: | ||
- attack.defense_evasion | ||
logsource: | ||
product: windows | ||
category: create_stream_hash | ||
detection: | ||
selection: | ||
Contents|contains: '.zip/' | ||
TargetFilename|contains: | ||
- '.bat:Zone' | ||
- '.dat:Zone' | ||
- '.dll:Zone' | ||
- '.doc:Zone' | ||
- '.docm:Zone' | ||
- '.exe:Zone' | ||
- '.hta:Zone' | ||
- '.pptm:Zone' | ||
- '.ps1:Zone' | ||
- '.rar:Zone' | ||
- '.rtf:Zone' | ||
- '.sct:Zone' | ||
- '.vbe:Zone' | ||
- '.vbs:Zone' | ||
- '.ws:Zone' | ||
- '.wsf:Zone' | ||
- '.xll:Zone' | ||
- '.xls:Zone' | ||
- '.xlsm:Zone' | ||
- '.zip:Zone' | ||
condition: selection | ||
falsepositives: | ||
- Legitimate file downloads from a websites and web services that uses the ".zip" top level domain. | ||
level: high |
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