CIS-Script icon indicating copy to clipboard operation
CIS-Script copied to clipboard

3.6 - Ensure Firewall is Configured to log

Open cbruce2 opened this issue 2 years ago • 1 comments

line 1703

If organizational score is 1 or true, check status of client

if [[ "${auditResult}" == "1" ]]; then if [[ "$osVersion" == "12."* ]]; then

I'm not sure how to add support for OSVersion 13. I'd like to have an addition rather than a replacement 12 for 13.

cbruce2 avatar Nov 29 '22 21:11 cbruce2

if [[ "${auditResult}" == "1" ]]; then if [[ "$osVersion" == "12."* ]] || [[ "$osVersion" == "13."* ]]; then

I modified and it seem still work in Ventura

phu-ngo avatar Dec 12 '22 09:12 phu-ngo