Merge pull request #1245 from oscd-initiative/oscd_art_linux_task_4_T1027

[OSCD] ART sync, test T1027: Obfuscated Files or Information (Linux)
This commit is contained in:
Thomas Patzke 2020-12-30 22:57:59 +01:00 committed by GitHub
commit 810485993a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,22 @@
title: Decode Base64 Encoded Text
id: e2072cab-8c9a-459b-b63c-40ae79e27031
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