← Back to SOC feed Coverage →

Nohup Execution

sigma MEDIUM SigmaHQ
T1059.004
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

The Nohup Execution rule detects adversaries using the nohup command to persist malicious processes or evade process termination, which is a common technique to maintain persistence or escape restricted environments. SOC teams should proactively hunt for this behavior in Azure Sentinel to identify potential long-running malicious activity that may evade standard monitoring and detection mechanisms.

Detection Rule

Sigma (Original)

title: Nohup Execution
id: e4ffe466-6ff8-48d4-94bd-e32d1a6061e2
status: test
description: Detects usage of nohup which could be leveraged by an attacker to keep a process running or break out from restricted environments
references:
    - https://gtfobins.github.io/gtfobins/nohup/
    - https://en.wikipedia.org/wiki/Nohup
    - https://www.computerhope.com/unix/unohup.htm
author: 'Christopher Peacock @SecurePeacock, SCYTHE @scythe_io'
date: 2022-06-06
tags:
    - attack.execution
    - attack.t1059.004
logsource:
    product: linux
    category: process_creation
detection:
    selection:
        Image|endswith: '/nohup'
    condition: selection
falsepositives:
    - Administrators or installed processes that leverage nohup
level: medium

KQL (Azure Sentinel)

imProcessCreate
| where TargetProcessName endswith "/nohup"

False Positive Guidance

MITRE ATT&CK Context

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