mirror of
https://github.com/usnistgov/macos_security.git
synced 2026-02-03 05:53:24 +00:00
system_settings_siri_listen_disable result check incorrect #89
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @jmahlman on GitHub.
Summary
The control
system_settings_siri_listen_disableis looking for the result of0when it should be expectingfalse.Steps to reproduce
system_settings_siri_listen_disablesettings and deploy.Operating System version
14.6.1
Intel or Apple Silicon
N/A
What is the current bug behavior?
The check will result in a finding as the check is expecting a "1"
What is the expected correct behavior?
No finding, check for "false"
Relevant logs and/or screenshots
Included.
Output of checks
Possible fixes
Change:
@brodjieski commented on GitHub:
There may be an additional issue going on here. When running generate_guidance, these pop up when building profiles...
This is because the rule yaml file has
com.apple.sirias the payload, but we havecom.apple.Sirias a supported payload. Need to verify the correct syntax.@jmahlman commented on GitHub:
Ah yeah, I see in the rule it's using
com.apple.siri. I'm almost 100% certain it should be capital S.@chadmorales commented on GitHub: