← Back to SOC feed Coverage →

System Network Discovery - Linux

sigma LOW SigmaHQ
T1016
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 use network discovery to map the local network and identify potential targets, which is a common step in initial compromise. SOC teams should proactively hunt for this behavior in Azure Sentinel to detect early signs of network reconnaissance and limit lateral movement opportunities.

Detection Rule

Sigma (Original)

title: System Network Discovery - Linux
id: e7bd1cfa-b446-4c88-8afb-403bcd79e3fa
status: test
description: Detects enumeration of local network configuration
references:
    - https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1016/T1016.md
author: Ömer Günal and remotephone, oscd.community
date: 2020-10-06
modified: 2022-09-15
tags:
    - attack.discovery
    - attack.t1016
logsource:
    category: process_creation
    product: linux
detection:
    selection_img:
        Image|endswith:
            - '/firewall-cmd'
            - '/ufw'
            - '/iptables'
            - '/netstat'
            - '/ss'
            - '/ip'
            - '/ifconfig'
            - '/systemd-resolve'
            - '/route'
    selection_cli:
        CommandLine|contains: '/etc/resolv.conf'
    condition: 1 of selection_*
falsepositives:
    - Legitimate administration activities
level: informational

KQL (Azure Sentinel)

imProcessCreate
| where (TargetProcessName endswith "/firewall-cmd" or TargetProcessName endswith "/ufw" or TargetProcessName endswith "/iptables" or TargetProcessName endswith "/netstat" or TargetProcessName endswith "/ss" or TargetProcessName endswith "/ip" or TargetProcessName endswith "/ifconfig" or TargetProcessName endswith "/systemd-resolve" or TargetProcessName endswith "/route") or TargetProcessCommandLine contains "/etc/resolv.conf"

False Positive Guidance

MITRE ATT&CK Context

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