This detection rule identifies adversary activity linked to the Gentlemen threat actor by monitoring specific Indicators of Compromise (IOCs) known to be utilized in their campaigns. SOC teams should proactively hunt for these signals within Azure Sentinel to enable early discovery and rapid containment of potential intrusions before they escalate into broader compromises.
Malware Family: Gentlemen Total IOCs: 2 IOC Types: md5_hash
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| md5_hash | ff709591615a26f037a465ce97cc59d6 | payload | 2026-08-06 | 75% |
| md5_hash | 1ecaf7098bedaa4ffae0fff3e077f937 | payload | 2026-08-06 | 75% |
// Hunt for files matching known malicious hashes
// Source: ThreatFox - Gentlemen
let malicious_hashes = dynamic(["ff709591615a26f037a465ce97cc59d6", "1ecaf7098bedaa4ffae0fff3e077f937"]);
DeviceFileEvents
| where SHA256 in (malicious_hashes) or SHA1 in (malicious_hashes) or MD5 in (malicious_hashes)
| project Timestamp, DeviceName, FileName, FolderPath, SHA256, InitiatingProcessFileName
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
DeviceFileEvents | Ensure this data connector is enabled |
Here are the documented false positive scenarios and corresponding exclusions for the ThreatFox: Gentlemen IOCs rule:
Scenario 1: Scheduled Endpoint Security Updates
Task Scheduler task named “Update_Threat_Intel”) automatically pulls the latest IOCs from an internal Threat Intelligence feed. If the “Gentlemen” campaign indicators are part of this standard feed, the detection logic will trigger on every successful update run across all managed endpoints.ProcessName is falcon.sysmon.exe (CrowdStrike) or MsSenseService.exe (Defender) AND the CommandLine contains keywords like “update”, “sync”, or “pull”. Alternatively, exclude traffic originating from the specific IP address of the internal Threat Intelligence Server.Scenario 2: Admin-Led Vulnerability Scanning
SourcePort is within the range of known scanner ports (e.g., 1743-1745 for Tenable) and the destination is not a critical asset group