← Back to SOC feed Coverage →

Communication To Ngrok Tunneling Service - Linux

sigma HIGH SigmaHQ
T1567T1568.002T1572T1090T1102
imNetworkSession
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

An adversary is using ngrok tunneling services to exfiltrate data from a compromised Linux host, leveraging command and control communication. SOC teams should proactively hunt for this behavior in Azure Sentinel to identify and mitigate potential data exfiltration and command and control activities early.

Detection Rule

Sigma (Original)

title: Communication To Ngrok Tunneling Service - Linux
id: 19bf6fdb-7721-4f3d-867f-53467f6a5db6
status: test
description: Detects an executable accessing an ngrok tunneling endpoint, which could be a sign of forbidden exfiltration of data exfiltration by malicious actors
references:
    - https://twitter.com/hakluke/status/1587733971814977537/photo/1
    - https://ngrok.com/docs/secure-tunnels/tunnels/ssh-reverse-tunnel-agent
author: Florian Roth (Nextron Systems)
date: 2022-11-03
tags:
    - attack.exfiltration
    - attack.command-and-control
    - attack.t1567
    - attack.t1568.002
    - attack.t1572
    - attack.t1090
    - attack.t1102
    - attack.s0508
logsource:
    product: linux
    category: network_connection
detection:
    selection:
        DestinationHostname|contains:
            - 'tunnel.us.ngrok.com'
            - 'tunnel.eu.ngrok.com'
            - 'tunnel.ap.ngrok.com'
            - 'tunnel.au.ngrok.com'
            - 'tunnel.sa.ngrok.com'
            - 'tunnel.jp.ngrok.com'
            - 'tunnel.in.ngrok.com'
    condition: selection
falsepositives:
    - Legitimate use of ngrok
level: high

KQL (Azure Sentinel)

imNetworkSession
| where DstHostname contains "tunnel.us.ngrok.com" or DstHostname contains "tunnel.eu.ngrok.com" or DstHostname contains "tunnel.ap.ngrok.com" or DstHostname contains "tunnel.au.ngrok.com" or DstHostname contains "tunnel.sa.ngrok.com" or DstHostname contains "tunnel.jp.ngrok.com" or DstHostname contains "tunnel.in.ngrok.com"

False Positive Guidance

MITRE ATT&CK Context

Original source: https://github.com/SigmaHQ/sigma/blob/master/rules/linux/network_connection/net_connection_lnx_ngrok_tunnel.yml