Skip to content

feat: Add coverage for Unicode Space Character Obfuscation #5445

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 4 commits into from
Jun 5, 2025
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@ references:
- https://www.cybereason.com/blog/research/a-bazar-of-tricks-following-team9s-development-cycles
- https://twitter.com/malwrhunterteam/status/1235135745611960321
- https://twitter.com/luc4m/status/1073181154126254080
- https://cloud.google.com/blog/topics/threat-intelligence/cybercriminals-weaponize-fake-ai-websites
author: Nasreddine Bencherchali (Nextron Systems), frack113
date: 2022-06-19
modified: 2022-11-07
modified: 2025-05-30
tags:
- attack.defense-evasion
- attack.t1036.007
Expand All @@ -34,6 +35,12 @@ detection:
- '.doc.'
- '.docx.'
- '.jpg.'
- '.jpeg.'
- '.png.'
- '.gif.'
- '.svg.'
- '.mp3.'
- '.mp4.'
- '.pdf.'
- '.ppt.'
- '.pptx.'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ references:
- https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1027/T1027.md#atomic-test-6---dlp-evasion-via-sensitive-data-in-vba-macro-over-http
author: frack113, Florian Roth (Nextron Systems), Josh Nickels
date: 2024-09-02
modified: 2024-09-05
modified: 2025-05-30
tags:
- attack.defense-evasion
- attack.t1027
Expand All @@ -29,12 +29,14 @@ detection:
- '\cmd.exe'
- '\cscript.exe'
- '\powershell.exe'
- '\powershell_ise.exe'
- '\pwsh.exe'
- '\wscript.exe'
OriginalFileName:
- 'Cmd.EXE'
- 'cscript.exe'
- 'PowerShell.EXE'
- 'PowerShell_ISE.EXE'
- 'pwsh.dll'
- 'wscript.exe'
selection_special_chars:
Expand All @@ -55,6 +57,8 @@ detection:
- '¯'
- '®'
- '¶'
# Unicode whitespace characters
- '⠀' # Braille Pattern Blank (Unicode: U+2800)
condition: all of selection_*
falsepositives:
- Unknown
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ description: Detects suspicious use of an .exe extension after a non-executable
references:
- https://blu3-team.blogspot.com/2019/06/misleading-extensions-xlsexe-docexe.html
- https://twitter.com/blackorbird/status/1140519090961825792
- https://cloud.google.com/blog/topics/threat-intelligence/cybercriminals-weaponize-fake-ai-websites
author: Florian Roth (Nextron Systems), @blu3_team (idea), Nasreddine Bencherchali (Nextron Systems)
date: 2019-06-26
modified: 2023-02-28
modified: 2025-05-30
tags:
- attack.initial-access
- attack.t1566.001
Expand All @@ -29,8 +30,18 @@ detection:
- '.rtf.exe'
- '.pdf.exe'
- '.txt.exe'
- '.jpg.exe'
- '.jpeg.exe'
- '.png.exe'
- '.gif.exe'
- '.svg.exe'
- '.mkv.exe'
- '.mp3.exe'
- '.mp4.exe'
- '.mov.exe'
- ' .exe'
- '______.exe'
- '⠀⠀⠀⠀⠀⠀.exe' # Unicode Space Character: Braille Pattern Blank (Unicode: U+2800)
- '.doc.js'
- '.docx.js'
- '.xls.js'
Expand All @@ -50,8 +61,18 @@ detection:
- '.rtf.exe'
- '.pdf.exe'
- '.txt.exe'
- '.jpg.exe'
- '.jpeg.exe'
- '.png.exe'
- '.gif.exe'
- '.svg.exe'
- '.mkv.exe'
- '.mp3.exe'
- '.mp4.exe'
- '.mov.exe'
- ' .exe'
- '______.exe'
- '⠀⠀⠀⠀⠀⠀.exe' # Unicode Space Character: Braille Pattern Blank (Unicode: U+2800)
- '.doc.js'
- '.docx.js'
- '.xls.js'
Expand Down
Loading