← Back to SOC feed Coverage →

Touch Suspicious Service File

sigma MEDIUM SigmaHQ
T1070.006
imProcessCreate
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at SigmaHQ →
Retrieved: 2026-03-25T02:50:08Z · Confidence: medium

Hunt Hypothesis

Adversaries may be attempting to modify or execute a suspicious service file to establish persistence or escalate privileges. SOC teams should proactively hunt for this behavior in Azure Sentinel to identify potential compromise of critical system services.

Detection Rule

Sigma (Original)

title: Touch Suspicious Service File
id: 31545105-3444-4584-bebf-c466353230d2
status: test
description: Detects usage of the "touch" process in service file.
references:
    - https://blogs.blackberry.com/
    - https://twitter.com/Joseliyo_Jstnk/status/1620131033474822144
author: Joseliyo Sanchez, @Joseliyo_Jstnk
date: 2023-01-11
tags:
    - attack.defense-evasion
    - attack.t1070.006
logsource:
    product: linux
    category: process_creation
detection:
    selection:
        Image|endswith: '/touch'
        CommandLine|contains: ' -t '
        CommandLine|endswith: '.service'
    condition: selection
falsepositives:
    - Admin changing date of files.
level: medium

KQL (Azure Sentinel)

imProcessCreate
| where TargetProcessName endswith "/touch" and TargetProcessCommandLine contains " -t " and TargetProcessCommandLine endswith ".service"

False Positive Guidance

MITRE ATT&CK Context

Original source: https://github.com/SigmaHQ/sigma/blob/master/rules/linux/process_creation/proc_creation_lnx_touch_susp.yml