-
-
Notifications
You must be signed in to change notification settings - Fork 74
Open
Labels
enhancementNew feature or requestNew feature or request
Description
"Security Log Maximum Size smaller then 4GB [High] [Expected value (Less Or Equal): 4000, Found value: 4095.94]"
To be technically accurate, the rule would be more in line with "value is greater than 64, less than 4194240, an even multiple of 64."
In pseudo ps that would be --
value -ge 64 and value -le 4194240 and (value % 64) -eq 0
4194240 is the maximum size to account for FAT 2 file size limits (Arguably it should be 4194304, but various Microsoft tooling stops or produces errors beyond 4194240). If the filesystem is NTFS, technically it could go higher, but various things get upset at this in practice.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request