You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now we have v14691a-v14691k or so to match each individual subnet that has to be blocked, so when the script runs I have to go back and consolidate 10ish results to determine the correct pass/fail status of V14691. If we could take this:
---
severity: 2desc: Deny unauthorized packets inbound from 100.64.0.0/10check:
text: [deny ip 0.0.0.0 0.255.255.255 any log,deny ip 100.64.0.0 0.0.63.255 any log,deny ip 192.0.0.0 0.0.0.255 any log,deny ip 192.0.2.0 0.0.0.255 any log,deny ip 198.18.0.0 0.1.255.255 any log,deny ip 198.51.100.0 0.0.0.255 any log,deny ip 203.0.113.0 0.0.0.255 any log,deny ip 224.0.0.0 15.255.255.255 any log,deny ip 240.0.0.0 15.255.255.255 any log,deny ip 100.64.0.0 255.192.0.0 any log]text_cnt: 1parent: ^ip\s+access-list\s+extended\s+ACL_EXTERNAL_INwhen: truepart_of_stig:
- l3ps
- l3pr
...
That way we could do a for loop or something for each line to check and return an overall pass/fail
The text was updated successfully, but these errors were encountered:
Right now we have v14691a-v14691k or so to match each individual subnet that has to be blocked, so when the script runs I have to go back and consolidate 10ish results to determine the correct pass/fail status of V14691. If we could take this:
And change it to something like :
That way we could do a for loop or something for each line to check and return an overall pass/fail
The text was updated successfully, but these errors were encountered: