Active Directory Discovery using AdExplorer

This rule detects the use of ADExplorer utility. Active Directory Explorer (AD Explorer) is an advanced Active Directory (AD) viewer and editor. AD Explorer also includes the ability to save snapshots of an AD database for off-line viewing and comparisons. Adversaries may abuse this utility to perform domain reconnaissance.

Elastic rule (View on GitHub)

  1[metadata]
  2creation_date = "2025/09/01"
  3integration = ["endpoint", "windows", "system", "m365_defender", "sentinel_one_cloud_funnel", "crowdstrike"]
  4maturity = "production"
  5updated_date = "2025/09/01"
  6
  7[rule]
  8author = ["Elastic"]
  9description = """
 10This rule detects the use of ADExplorer utility. Active Directory Explorer (AD Explorer) is an advanced Active Directory (AD)
 11viewer and editor. AD Explorer also includes the ability to save snapshots of an AD database for off-line viewing and comparisons.
 12Adversaries may abuse this utility to perform domain reconnaissance.
 13"""
 14from = "now-9m"
 15index = [
 16    "endgame-*",
 17    "logs-crowdstrike.fdr*",
 18    "logs-endpoint.events.process-*",
 19    "logs-m365_defender.event-*",
 20    "logs-sentinel_one_cloud_funnel.*",
 21    "logs-system.security*",
 22    "logs-windows.forwarded*",
 23    "logs-windows.sysmon_operational-*",
 24    "winlogbeat-*",
 25]
 26language = "eql"
 27license = "Elastic License v2"
 28name = "Active Directory Discovery using AdExplorer"
 29note = """## Triage and analysis
 30
 31### Investigating Active Directory Discovery using AdExplorer
 32
 33Active Directory Explorer (AD Explorer) is an advanced Active Directory (AD) viewer and editor. AD Explorer also includes the ability to save snapshots of an AD database for off-line viewing and comparisons.
 34
 35#### Possible investigation steps
 36
 37- Identify the user account that performed the action and whether it should perform this kind of action.
 38- Verify any file creation, this may indicate the creation of an AD snapshot.
 39- Identify when the AdExplorer binary was dropped and by what process reviewing file creation events.
 40- Contact the account owner and confirm whether they are aware of this activity.
 41- Investigate other alerts associated with the user/host during the past 48 hours.
 42
 43### False positive analysis
 44
 45- This rule has a high chance to produce false positives as it is a legitimate tool used by system administrators.
 46- If this rule is noisy in your environment due to expected activity, consider adding exceptions — preferably with a combination of user and process path conditions.
 47
 48### Response and remediation
 49
 50- Initiate the incident response process based on the outcome of the triage.
 51- Isolate the involved host to prevent further post-compromise behavior.
 52- Investigate credential exposure on systems compromised or used by the attacker to ensure all compromised accounts are identified. Reset passwords for these accounts and other potentially compromised credentials, such as email, business systems, and web services.
 53- Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
 54- Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
 55- Using the incident response data, update logging and audit policies to improve the mean time to detect (MTTD) and the mean time to respond (MTTR).
 56"""
 57references = ["https://learn.microsoft.com/en-us/sysinternals/downloads/adexplorer"]
 58risk_score = 21
 59rule_id = "ff46eb26-0684-4da3-9dd6-21032c9878e1"
 60severity = "low"
 61tags = [
 62    "Domain: Endpoint",
 63    "OS: Windows",
 64    "Use Case: Threat Detection",
 65    "Tactic: Discovery",
 66    "Resources: Investigation Guide",
 67    "Data Source: Elastic Endgame",
 68    "Data Source: Elastic Defend",
 69    "Data Source: Windows Security Event Logs",
 70    "Data Source: Microsoft Defender for Endpoint",
 71    "Data Source: Sysmon",
 72    "Data Source: SentinelOne",
 73    "Data Source: Crowdstrike",
 74]
 75timestamp_override = "event.ingested"
 76type = "eql"
 77
 78query = '''
 79process where host.os.type == "windows" and event.type == "start" and
 80  (process.name : "ADExplorer*.exe" or ?process.pe.original_file_name == "AdExp")
 81'''
 82
 83
 84[[rule.threat]]
 85framework = "MITRE ATT&CK"
 86[[rule.threat.technique]]
 87id = "T1016"
 88name = "System Network Configuration Discovery"
 89reference = "https://attack.mitre.org/techniques/T1016/"
 90
 91[[rule.threat.technique]]
 92id = "T1018"
 93name = "Remote System Discovery"
 94reference = "https://attack.mitre.org/techniques/T1018/"
 95
 96[[rule.threat.technique]]
 97id = "T1069"
 98name = "Permission Groups Discovery"
 99reference = "https://attack.mitre.org/techniques/T1069/"
100[[rule.threat.technique.subtechnique]]
101id = "T1069.002"
102name = "Domain Groups"
103reference = "https://attack.mitre.org/techniques/T1069/002/"
104
105
106[[rule.threat.technique]]
107id = "T1087"
108name = "Account Discovery"
109reference = "https://attack.mitre.org/techniques/T1087/"
110[[rule.threat.technique.subtechnique]]
111id = "T1087.002"
112name = "Domain Account"
113reference = "https://attack.mitre.org/techniques/T1087/002/"
114
115
116[[rule.threat.technique]]
117id = "T1482"
118name = "Domain Trust Discovery"
119reference = "https://attack.mitre.org/techniques/T1482/"
120
121
122[rule.threat.tactic]
123id = "TA0007"
124name = "Discovery"
125reference = "https://attack.mitre.org/tactics/TA0007/"

Triage and analysis

Investigating Active Directory Discovery using AdExplorer

Active Directory Explorer (AD Explorer) is an advanced Active Directory (AD) viewer and editor. AD Explorer also includes the ability to save snapshots of an AD database for off-line viewing and comparisons.

Possible investigation steps

  • Identify the user account that performed the action and whether it should perform this kind of action.
  • Verify any file creation, this may indicate the creation of an AD snapshot.
  • Identify when the AdExplorer binary was dropped and by what process reviewing file creation events.
  • Contact the account owner and confirm whether they are aware of this activity.
  • Investigate other alerts associated with the user/host during the past 48 hours.

False positive analysis

  • This rule has a high chance to produce false positives as it is a legitimate tool used by system administrators.
  • If this rule is noisy in your environment due to expected activity, consider adding exceptions — preferably with a combination of user and process path conditions.

Response and remediation

  • Initiate the incident response process based on the outcome of the triage.
  • Isolate the involved host to prevent further post-compromise behavior.
  • Investigate credential exposure on systems compromised or used by the attacker to ensure all compromised accounts are identified. Reset passwords for these accounts and other potentially compromised credentials, such as email, business systems, and web services.
  • Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
  • Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
  • Using the incident response data, update logging and audit policies to improve the mean time to detect (MTTD) and the mean time to respond (MTTR).

References

Related rules

to-top