-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add attachment_filename_containing_unicode_braille_pattern_blank_character.yml by @vector-sec #1924 Source SHA fa2bad8 Triggered by @zoomequipd
- Loading branch information
Sublime Rule Testing Bot
committed
Dec 16, 2024
1 parent
45682fb
commit ad89520
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
detection-rules/attachment_filename_containing_unicode_braille_pattern_blank_character.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,28 @@ | ||
name: 'Attachment: Filename Containing Unicode Braille Pattern Blank Character' | ||
description: | | ||
Recursively identifies attachments that attempt to conceal their true file extension by using Braille Pattern Blank characters | ||
references: | ||
- "https://www.bleepingcomputer.com/news/security/windows-vulnerability-abused-braille-spaces-in-zero-day-attacks/" | ||
type: "rule" | ||
authors: | ||
- twitter: "vector_sec" | ||
severity: "high" | ||
source: | | ||
type.inbound | ||
and any(attachments, | ||
regex.icontains(.file_name, '\x{2800}') | ||
or ( | ||
.file_extension in~ $file_extensions_common_archives | ||
and any(file.explode(.), regex.icontains(.file_name, '\x{2800}')) | ||
) | ||
) | ||
attack_types: | ||
- "Malware/Ransomware" | ||
tactics_and_techniques: | ||
- "Evasion" | ||
detection_methods: | ||
- "Archive analysis" | ||
- "File analysis" | ||
id: "c230ca86-f563-58b0-8667-5052cc9bf3c6" | ||
testing_pr: 1924 | ||
testing_sha: fa2bad8b3500b3f536d2cb60ea131ee6261e7c21 |