You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Windows Driver Load Non-Standard Path detection, the regex to ignore well-known standard paths for driver does not match correctly for MS Defender.
The regex match "\ProgramData\Microsoft\Windows Defender\Definition Updates" without the volume/drive letter in front.
Regex in windows_driver_load_non_standard_path.yml should be:
| regex ImagePath!="(?i)^(\w:\\Windows\\|\w:\\Program\sFile|\\systemroot\\|%SystemRoot%|system32\\|\w:\\ProgramData\\Microsoft\\Windows\sDefender\\Definition\sUpdates\\)"