Skip to content

Commit

Permalink
Add PCI-DSS v4.0 reference parser
Browse files Browse the repository at this point in the history
This ensures the rules part of PCI-DSS v4 profile contains annotaions
with supported requirement number.
  • Loading branch information
yuumasato committed Aug 16, 2024
1 parent cd44a50 commit 04acca7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkg/profileparser/profileparser.go
Original file line number Diff line number Diff line change
Expand Up @@ -830,6 +830,10 @@ func newStandardParser() *referenceParser {
if pcidssperr != nil {
log.Error(nciperr, "Could not register PCI-DSS reference parser") // not much we can do here..
}
pcidss4perr := p.registerStandard("PCI-DSS-4-0", `https://docs-prv\.pcisecuritystandards\.org/PCI%20DSS/Standard/PCI-DSS-v4_0\.pdf`)
if pcidss4perr != nil {
log.Error(nciperr, "Could not register PCI-DSS-4-0 reference parser") // not much we can do here..
}
stigperr := p.registerStandard("STIG", `^https://public\.cyber\.mil/stigs/downloads/\?_dl_facet_stigs=container-platform`)
if stigperr != nil {
log.Error(stigperr, "Could not register STIG reference parser") // not much we can do here..
Expand Down

0 comments on commit 04acca7

Please sign in to comment.