mirror of
https://github.com/valitydev/SigmaHQ.git
synced 2024-11-06 17:35:19 +00:00
27 lines
822 B
YAML
27 lines
822 B
YAML
title: Scheduled Cron Task/Job
|
|
id: 6b14bac8-3e3a-4324-8109-42f0546a347f
|
|
status: experimental
|
|
description: Detects abuse of the cron utility to perform task scheduling for initial or recurring execution of malicious code. Detection will focus on crontab jobs uploaded from the tmp folder.
|
|
author: Alejandro Ortuno, oscd.community
|
|
date: 2020/10/06
|
|
references:
|
|
- https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1053.003/T1053.003.md
|
|
logsource:
|
|
category: process_creation
|
|
product: linux
|
|
detection:
|
|
selection:
|
|
Image|endswith:
|
|
- 'crontab'
|
|
CommandLine|contains:
|
|
- '/tmp/'
|
|
condition: selection
|
|
falsepositives:
|
|
- Legitimate administration activities
|
|
level: medium
|
|
tags:
|
|
- attack.execution
|
|
- attack.persistence
|
|
- attack.privilege_escalation
|
|
- attack.t1053.003
|