mirror of
https://github.com/valitydev/SigmaHQ.git
synced 2024-11-06 17:35:19 +00:00
22 lines
627 B
YAML
22 lines
627 B
YAML
|
title: Decode base64 encoded text
|
||
|
id: 719c22d7-c11a-4f2c-93a6-2cfdd5412f68
|
||
|
status: experimental
|
||
|
description: Detects usage of base64 utility to decode arbitrary base64-encoded text
|
||
|
author: Daniil Yugoslavskiy, oscd.community
|
||
|
date: 2020/10/19
|
||
|
references:
|
||
|
- https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1027/T1027.md
|
||
|
logsource:
|
||
|
category: process_creation
|
||
|
product: linux
|
||
|
detection:
|
||
|
base64_execution:
|
||
|
ProcessName|endswith: '/base64'
|
||
|
CommandLine|contains: '-d'
|
||
|
condition: base64_execution
|
||
|
falsepositives:
|
||
|
- Legitimate activities
|
||
|
level: low
|
||
|
tags:
|
||
|
- attack.defense_evasion
|
||
|
- attack.t1027
|