-
Notifications
You must be signed in to change notification settings - Fork 465
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds policy and query to verify Windows Defender is installed and working on Windows. #18494
- Loading branch information
1 parent
ea86f9e
commit 0b66bc4
Showing
2 changed files
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
- name: Collect Windows Defender | ||
automations_enabled: false | ||
description: Collects the pid, process name, user, path and command line for Windows Defender installed on hosts. | ||
discard_data: false | ||
interval: 3600 | ||
logging: snapshot | ||
min_osquery_version: "" | ||
observer_can_run: true | ||
platform: "windows" | ||
query: SELECT processes.pid, processes.name, users.username, processes.path, processes.cmdline FROM processes LEFT JOIN users ON processes.uid = users.uid WHERE processes.path != '' AND name LIKE 'MpCmdRun.exe'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters