← Back to SOC feed Coverage →

intercepts ssh connections to capture credentials

yara LOW signature-base
aptcredential-theftflorian-roth
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 signature-base →
Retrieved: 2026-05-28T11:00:00Z · Confidence: medium

Hunt Hypothesis

Adversaries may intercept SSH connections to capture credentials and exfiltrate sensitive information. SOC teams should proactively hunt for this behavior in Azure Sentinel to identify potential credential theft and early-stage compromise attempts.

YARA Rule

rule hacktool_multi_jtesta_ssh_mitm
{
    meta:
        description = "intercepts ssh connections to capture credentials"
        reference = "https://github.com/jtesta/ssh-mitm"
        author = "@fusionrace"
        id = "c44ca655-71f8-50d6-b0ec-9a85434d780f"
    strings:
        $a1 = "INTERCEPTED PASSWORD:" wide ascii
        $a2 = "more sshbuf problems." wide ascii
    condition:
        all of ($a*)
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 2 string patterns in its detection logic.

References

False Positive Guidance

Original source: https://github.com/Neo23x0/signature-base/blob/main/vendor/yara/airbnb_binaryalert.yar