Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new virtual table windows_security_center #6256

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix typos
  • Loading branch information
terracatta committed Feb 19, 2020
commit 2b015c0b0b6d08aff601e7f557e7fd8b4fac239e
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ QueryData gen_wsc(QueryContext& context) {
r["user_account_control"] =
resolveProductHealthOrError(WSC_SECURITY_PROVIDER_USER_ACCOUNT_CONTROL);
r["windows_security_center_service"] =
resolveProductHealthOrError(WSC_SECURITY_PROVIDER_USER_ACCOUNT_CONTROL);
resolveProductHealthOrError(WSC_SECURITY_PROVIDER_SERVICE);

results.push_back(r);
return results;
Expand Down
4 changes: 2 additions & 2 deletions specs/windows/windows_security_center.table
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
table_name("windows_security_center")
description("The health status of Window Security features. Health values can be \"Good\", \"Poor\". \"Snoozed\", \"Not Monitored\", and \"Error\")
description("The health status of Window Security features. Health values can be \"Good\", \"Poor\". \"Snoozed\", \"Not Monitored\", and \"Error\"")
schema([
Column("global_state", TEXT, "The overall health of the Windows Security Center"),
Column("firewall", TEXT, "The health of the monitored Firewall (see windows_security_products)"),
Column("autoupdate", TEXT, "The health of the Windows Autoupdate feature"),
Column("antivirus", TEXT, "The health of the moinitored Antivirus solution (see windows_security_products)"),
Column("antivirus", TEXT, "The health of the monitored Antivirus solution (see windows_security_products)"),
Column("antispyware", TEXT, "The health of the monitored Antispyware solution (see windows_security_products)"),
Column("internet_settings", TEXT, "The health of the Internet Settings"),
Column("windows_security_center_service", TEXT, "The health of the Windows Security Center Service"),
Expand Down