1117 Defender log · Threat Detection medium severity low volume

Defender Event ID 1117 — Microsoft Defender took action on malware

Microsoft Defender Antivirus took an action (Quarantine, Remove, Block, Clean, or Allow) on a previously detected threat. Pairs with the 1116 detection event.

Why event 1117 matters

1117 confirms the outcome of remediation. Action=Allowed on a real threat — or a failed clean-up — means the malware likely persists. Attackers may add exclusions (5007) so Defender allows their payload instead of quarantining it.

How to detect it

Alert when Action=Allowed for non-test threats. Flag threats detected (1116) with no successful 1117. Track hosts with repeated failed remediations for manual IR.

Log source
Microsoft-Windows-Windows Defender/Operational
On by default where Microsoft Defender Antivirus is active; ensure the Operational channel is collected.
Fields to pivot on
Threat NameActionPathProcess Name

MITRE ATT&CK mapping

Tactic Technique
Defense Evasion Disable or Modify Tools (T1562.001)

Detection queries

Starting points — adapt the log source, projected fields and thresholds for your environment.

Sigma rule
title: Defender Threat Allowed Or Remediation Failed
status: experimental
logsource:
  product: windows
  service: windefend
detection:
  sel:
    EventID: 1117
    Action: 'Allowed'
  condition: sel
level: high
Sentinel / Defender KQL
Event
| where EventLog == "Microsoft-Windows-Windows Defender/Operational" and EventID == 1117   // Microsoft Defender took action on malware
// EventData holds: Threat Name, Action, Path, Process Name
| project TimeGenerated, Computer, RenderedDescription
| sort by TimeGenerated desc
Splunk SPL
index=* sourcetype="WinEventLog:Microsoft-Windows-Windows Defender/Operational" EventCode=1117
| stats count earliest(_time) as first_seen latest(_time) as last_seen by ComputerName
| sort - count   `# Microsoft Defender took action on malware — add EventData fields: Threat Name, Action, Path, Process Name`
Hunt event 1117 in Sentinel/Defender →
Build a KQL query for this event in the KQL Query Builder.
Search all event IDs →
Open the interactive Windows Event ID lookup.

References

Related Threat Detection events

1116 Microsoft Defender detected malware or PUA

Frequently asked questions

What is Defender Event ID 1117?

Microsoft Defender took action on malware. Microsoft Defender Antivirus took an action (Quarantine, Remove, Block, Clean, or Allow) on a previously detected threat. Pairs with the 1116 detection event.

Which log records event 1117?

Event 1117 is written to the Microsoft-Windows-Windows Defender/Operational channel by Microsoft-Windows-Windows Defender. On by default where Microsoft Defender Antivirus is active; ensure the Operational channel is collected.

What MITRE ATT&CK techniques map to event 1117?

Event 1117 is associated with: Disable or Modify Tools (T1562.001).

How do you detect activity around event 1117?

Alert when Action=Allowed for non-test threats. Flag threats detected (1116) with no successful 1117. Track hosts with repeated failed remediations for manual IR.