Skip to content

Commit

Permalink
#1029: Extended trivy rego for Kernel CVE's (#482)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomuben authored Dec 5, 2024
1 parent cc30fcd commit ab70c0d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ default ignore = false

ignore {
input.PkgName == "linux-libc-dev"
regex.match("^kernel:", input.Title)
regex.match("^(kernel:|In the Linux kernel)", input.Title)
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ default ignore = false

ignore {
input.PkgName == "linux-libc-dev"
regex.match("^kernel:", input.Title)
regex.match("^(kernel:|In the Linux kernel)", input.Title)
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ default ignore = false

ignore {
input.PkgName == "linux-libc-dev"
regex.match("^kernel:", input.Title)
regex.match("^(kernel:|In the Linux kernel)", input.Title)
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ default ignore = false

ignore {
input.PkgName == "linux-libc-dev"
regex.match("^kernel:", input.Title)
regex.match("^(kernel:|In the Linux kernel)", input.Title)
}

0 comments on commit ab70c0d

Please sign in to comment.