mirror of
https://github.com/usnistgov/macos_security.git
synced 2026-02-03 14:03:24 +00:00
audit_flags_fm_configure #288
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 @robertgendler on GitHub.
We should change fm to -fm as no 800-53 rule actually requires auditing of all file modifications (successful or not).
This will also make audit far less busy.
@robertgendler commented on GitHub:
Updated with commit
78756b826b@cipineda commented on GitHub:
I'm testing dev_sonoma and found that this issue is back:
The validation script is:
/usr/bin/awk -F':' '/^flags/ { print $NF }' /etc/security/audit_control | /usr/bin/tr ',' '\n' | /usr/bin/grep -Ec '^fm'which returns a 0
if the
'^fm'is changed to either'fm'or'-fm'then it returns a 1here are the flags in my
/etc/security/audit_control' fileflags:lo,aa,ad,-ex,-fd,-fm,-fr,-fw`Should I open a new issue? or you follow up on this one?
@golbiga commented on GitHub:
merged with
main